1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17
18 /*!
19 * ======== MSP430F5436 ========
20 * MSP430F5436 CPU definition
21 */
22 metaonly module MSP430F5436 inherits IMSP430F54xx
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: 0x4000,
38 space: "code/data",
39 access: "RWX"
40 }],
41
42 ["FLASH", {
43 comment: "Program FLASH",
44 name: "FLASH",
45 base: 0x5C00,
46 len: 0xA380,
47 space: "code",
48 access: "RWX"
49 }],
50
51 ["FLASH2", {
52 comment: "Extended Program FLASH",
53 name: "FLASH2",
54 base: 0x10000,
55 len: 0x25C00,
56 space: "code",
57 access: "RWX"
58 }],
59
60 ];
61 };
62 63 64
65