1 2 3 4 5 6 7 8
9
10 11 12
13 package ti.catalog.c470;
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 metaonly module TMS570PSF762 inherits ti.catalog.arm.TMS470xx
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 ti.catalog.arm.TMS570PSF762.memMap;
33 };
34
35 36 37
38