1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17
18 /*!
19 * ======== C64T ========
20 * TI C64T little endian (ELF)
21 */
22 metaonly module C64T inherits ITarget {
23 override readonly config string name = "C64T";
24 override readonly config string suffix = "e64T";
25 override readonly config string isa = "64T";
26 override readonly config xdc.bld.ITarget.Model model = {
27 endian: "little",
28 shortEnums: false
29 };
30 override readonly config xdc.bld.ITarget.Module base = ti.targets.C62;
31
32 override config string platform = "ti.platforms.sdp4430";
33
34 override readonly config xdc.bld.ITarget2.Command cc = {
35 cmd: "cl6x -c",
36 opts: "-mv=tesla --abi=eabi"
37 };
38
39 override readonly config xdc.bld.ITarget2.Command asm = {
40 cmd: "cl6x -c",
41 opts: "-mv=tesla --abi=eabi"
42 };
43
44 override readonly config xdc.bld.ITarget.StdTypes stdTypes =
45 ti.targets.elf.C64P.stdTypes;
46
47 override readonly config Int bitsPerChar =
48 ti.targets.C62.bitsPerChar;
49 }
50 51 52 53
54