1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17 package ti.catalog.c6000;
18
19 /*!
20 * ======== TMS320C6745 ========
21 */
22 metaonly module TMS320C6745 inherits ITMS320DA8xx
23 {
24 instance:
25 override config xdc.platform.IPlatform.Memory memMap[string] = [
26 ["L2ROM", {
27 comment: "Internal 1MB L2 ROM",
28 name: "IROM",
29 base: 0x11700000,
30 len: 0x00100000,
31 space: "code/data",
32 access: "RX"
33 }],
34
35 ["IRAM", {
36 comment: "Internal 256KB L2 memory",
37 name: "IRAM",
38 base: 0x11800000,
39 len: 0x00040000,
40 space: "code/data",
41 access: "RWX"
42 }],
43
44 ["L1PSRAM", {
45 comment: "Internal 32KB L1 program memory",
46 name: "L1PSRAM",
47 base: 0x11E00000,
48 len: 0x00008000,
49 space: "code",
50 access: "RWX"
51 }],
52
53 ["L1DSRAM", {
54 comment: "Internal 32KB L1 data memory",
55 name: "L1DSRAM",
56 base: 0x11F00000,
57 len: 0x00008000,
58 space: "data",
59 access: "RW"
60 }],
61 ];
62 };
63 64 65
66