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