1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17
18 /*!
19 * ======== CC430F6137 ========
20 * CC430F6137 CPU definition
21 */
22 metaonly module CC430F6137 inherits IMSP430F55xx
23 {
24 instance:
25 override config string cpuCoreRevision = "1.0";
26
27 /*!
28 * ======== memMap ========
29 * The default memory map for this device
30 */
31 config xdc.platform.IPlatform.Memory memMap[string] = [
32
33 ["RAM", {
34 comment: "Data RAM",
35 name: "RAM",
36 base: 0x1C00,
37 len: 0x1000,
38 space: "code/data",
39 access: "RWX"
40 }],
41
42 ["FLASH", {
43 comment: "Program FLASH",
44 name: "FLASH",
45 base: 0x8000,
46 len: 0x7F80,
47 space: "code",
48 access: "RWX"
49 }],
50 ];
51 };
52 53 54
55