1 2 3 4 5 6 7 8
9
10 11 12
13 package ti.catalog.arm;
14
15 /*!
16 * ======== TMS570PSF762 ========
17 * The C470 device data sheet module.
18 *
19 * This module implements the xdc.platform.ICpuDataSheet interface and is
20 * used by platforms to obtain "data sheet" information about this device.
21 *
22 * Warning: The data for this module comes from the linker command file
23 * shipped with the TI 470 tools and does NOT come from any published data
24 * sheet.
25 */
26 metaonly module TMS570PSF762 inherits TMS470xx
27 {
28 instance:
29 override config string cpuCoreRevision = "1.0";
30
31 /*!
32 * ======== memMap ========
33 * The default memory map for this device
34 */
35 config xdc.platform.IPlatform.Memory memMap[string] = [
36 ["IRAM", {
37 name: "IRAM",
38 base: 0x00000000,
39 len: 0x00014000,
40 space: "code/data",
41 access: "RWX"
42 }],
43 ];
44 };
45
46 47 48
49