1 2 3 4 5 6 7 8 9 10 11 12
13 14 15 16
17
18 requires xdc.bld;
19
20 /*!
21 * ======== ti.targets ========
22 * Package of targets for TI code generation tools
23 *
24 * The modules in this package implement the xdc.bld.ITarget interface; this
25 * interface "wraps" the compiler tool-chain with an abstract interface
26 * that enables these tools to to be used by the XDC Build Engine.
27 */
28 package ti.targets [1,0,3] {
29 module C62, C62_big_endian;
30 module C64, C64_big_endian;
31 module C64P, C64P_big_endian, C674, C674_big_endian;
32 module C67, C67_big_endian;
33 module C67P;
34 module C64T, C64T_big_endian, C66, C66_big_endian;
35 module C54, C54_far;
36 module C55, C55_large, C55_huge, C55P_word;
37 module C28, C28_large, C28_float;
38 module TMS470, TMS470_big_endian;
39
40 interface ITarget;
41 }
42 43 44 45
46