1    /* 
     2     *  Copyright (c) 2008 Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     * 
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     * 
    11     * */
    12    
    13    /*
    14     *  ======== C64T.xdc ========
    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     *  @(#) ti.targets.elf; 1, 0, 0,436; 3-17-2014 16:50:28; /db/ztree/library/trees/xdctargets/xdctargets-h18x/src/ xlibrary
    52    
    53     */
    54