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