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 C28, C28_large, C28_float;
30 module C64P, C674;
31 module C66;
32
33 interface ITarget;
34 }
35 36 37 38
39