1    /*
     2     *  ======== Settings.xdc ========
     3     *
     4     *! Revision History
     5     *! ================
     6     *! 06-Jan-2006 sasa    created
     7     */
     8    
     9    
    10    /*!
    11     *  ======== Settings ========
    12     *  Allows selection between TI and MOTOROLA cof libraries.
    13     */
    14    metaonly module Settings {
    15    
    16        /*! 
    17         * Mode: {TI, MOTOROLA}. 
    18         *
    19         * TI. The function getLibs() returns cof_ti.lib libraries.
    20         *
    21         * MOTOROLA. The function getLibs() returns cof_mot.lib libraries.
    22         */
    23        enum Mode {TI, MOTOROLA};
    24    
    25        /*! 
    26         * Determines the libraries contributed by this package. 
    27         * 
    28         * Default is TI
    29         */
    30        config Mode mode = TI;
    31    
    32    }