1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17 package ti.catalog.c6000;
18
19 /*!
20 * ======== TMS320C6712 ========
21 * The C6712 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 TMS320C6712 inherits ITMS320C6x1x
27 {
28
29 instance:
30 override config string cpuCore = "6700";
31 override config string isa = "67";
32
33 override config xdc.platform.IPlatform.Memory memMap[string] =
34 TMS320C6211.memMap;
35
36 };
37 38 39
40