1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16 17
18 package ti.catalog.c5500;
19
20 /*!
21 * ======== TNETV1055 ========
22 * The TNETV1055 device data sheet module.
23 *
24 * This module implements the xdc.platform.ICpuDataSheet interface and is
25 * used by platforms to obtain "data sheet" information about this device.
26 */
27 metaonly module TNETV1055 inherits ITMS320C55xx
28 {
29 instance:
30 override config string cpuCoreRevision = "1.0";
31
32 /*!
33 * ======== memMap ========
34 * The default memory map for this device
35 */
36 config xdc.platform.IPlatform.Memory memMap[string] = TNETV1050.memMap;
37 };
38 39 40
41