1    /*
     2     *  Copyright 2017 by Texas Instruments Incorporated.
     3     *
     4     */
     5    
     6    /*
     7     *  ======== Settings.xdc ========
     8     *
     9     */
    10    
    11    
    12    /*!
    13     *  ======== Settings ========
    14     *  Allows selection between TI and MOTOROLA cof libraries.
    15     */
    16    metaonly module Settings {
    17    
    18        /*! 
    19         * Mode: {TI, MOTOROLA}. 
    20         *
    21         * TI. The function getLibs() returns cof_ti.lib libraries.
    22         *
    23         * MOTOROLA. The function getLibs() returns cof_mot.lib libraries.
    24         */
    25        enum Mode {TI, MOTOROLA};
    26    
    27        /*! 
    28         * Determines the libraries contributed by this package. 
    29         * 
    30         * Default is TI
    31         */
    32        config Mode mode = TI;
    33    
    34    }
    35    /*
    36     *  @(#) ti.targets.omf.cof; 1,0,0,0; 2-10-2017 09:26:05; /db/ztree/library/trees/xdctargets/xdctargets-m11/src/ xlibrary
    37    
    38     */
    39