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