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