1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17 package ti.catalog.c6000;
18
19 /*!
20 * ======== TMS320C6722 ========
21 * The C6722 device data sheet module.
22 *
23 * This module implements the xdc.platform.ICpuDataSheet interface and is
24 * used by platforms to obtain "data sheet" information about this device.
25 */
26 metaonly module TMS320C6722 inherits IAntara
27 {
28 instance:
29 override config xdc.platform.IPlatform.Memory memMap[string] = [
30 ["IRAM", {
31 name: "IRAM",
32 comment: "Internal memory",
33 base: 0x10000000,
34 len: 0x00020000,
35 space: "code/data",
36 access: "RWX"
37 }],
38 ];
39
40 };
41 42 43
44