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    import ti.targets.ITarget;
    13    
    14    /*!
    15     *  ======== IR4_big_endian.xdc ========
    16     *  Cortex R4 big endian target
    17     */
    18    metaonly interface IR4_big_endian inherits ti.targets.arm.IArm {
    19        override readonly config string isa         = "v7R";
    20    
    21        override readonly config xdc.bld.ITarget.Module base = ti.targets.arm.Arm9;
    22    
    23        override config string platform   = "ti.platforms.evmTMS570";
    24    
    25        override readonly config ti.targets.ITarget.Command lnk = {
    26            cmd:  "lnk470",
    27            opts: "--be32 --silicon_version=7R4 --strict_compatibility=on"
    28        };
    29    }
    30    /*
    31     *  @(#) ti.targets.arm; 2, 0, 1, 0,209; 6-17-2010 13:38:28; /db/ztree/library/trees/xdctargets/xdctargets-b38x/src/
    32     */
    33