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     *  ======== IM3.xdc ========
    14     *  Cortex M3 little endian thumb2 target
    15     */
    16    metaonly interface IM3 inherits ti.targets.arm.elf.IArm {
    17        override readonly config string isa         = "v7M";
    18    
    19        override readonly config xdc.bld.ITarget.Module base = ti.targets.arm.Arm9;
    20    
    21        override config string platform   = "ti.platforms.simDucati";
    22    
    23        override readonly config xdc.bld.ITarget.Model model = {
    24            endian: "little",
    25            codeModel: "thumb2",
    26            shortEnums: true
    27        };
    28    
    29        override readonly config ti.targets.ITarget.Command lnk = {
    30            cmd:  "lnk470",
    31            opts: "--silicon_version=7M3 --strict_compatibility=on"
    32        };
    33    }
    34    /*
    35     *  @(#) ti.targets.arm.elf; 1, 0, 0,141; 6-17-2010 13:38:27; /db/ztree/library/trees/xdctargets/xdctargets-b38x/src/
    36     */
    37