1 2 3 4 5 6 7 8 9 10 11
12
13 14 15
16 package ti.catalog.arm;
17
18 /*!
19 * ======== TMS470xx ========
20 * An interface implemented by all TMS470xx devices.
21 *
22 * This interface is defined to factor common data about this family into
23 * a single place; all TMS470xx devices extend this interface.
24 */
25 metaonly interface TMS470xx inherits ti.catalog.ICpuDataSheet
26 {
27 instance:
28 override config string cpuCore = "470";
29 override config string isa = "v4T";
30
31 override config int minProgUnitSize = 1;
32 override config int minDataUnitSize = 1;
33 override config int dataWordSize = 4;
34 };
35 36 37
38