1 2 3 4 5 6 7 8 9 10 11
12
13 14 15
16 package ti.catalog.arm;
17
18 /*!
19 * ======== TMS470R10 ========
20 * The C470 device data sheet module.
21 *
22 * This module implements the xdc.platform.ICpuDataSheet interface and is
23 * used by platforms to obtain "data sheet" information about this device.
24 *
25 * Warning: The data for this module comes from the linker command file
26 * shipped with the TI 470 tools and does NOT come from any published data
27 * sheet.
28 */
29 metaonly module TMS470R10 inherits TMS470xx
30 {
31 instance:
32 override config string cpuCoreRevision = "1.0";
33
34 /*!
35 * ======== memMap ========
36 * The default memory map for this device
37 */
38 config xdc.platform.IPlatform.Memory memMap[string] = [
39 ["P_MEM", {
40 comment: "Program Memory (ROM)",
41 name: "P_MEM",
42 base: 0x00000000,
43 len: 0x00030000,
44 space: "code"
45 }],
46
47 ["D_MEM", {
48 comment: "Data Memory (RAM)",
49 name: "D_MEM",
50 base: 0x00030000,
51 len: 0x00050000,
52 space: "data"
53 }],
54 ];
55 };
56 57 58
59