1    /*
     2     *  Copyright (c) 2012 by 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    /*
    14     *  ======== Boot.xdc ========
    15     *
    16     */
    17    
    18    package ti.catalog.c2800.concertoInit;
    19    
    20    /*!
    21     *  ======== Boot ========
    22     *  Concerto C28 Boot Support.
    23     *
    24     *  This Boot module can be used to generate a small section that supports 
    25     *  booting the C28 processor from Flash.  It consists of a single 
    26     *  "LB _c_int00" instruction.  
    27     *
    28     *  When `{@link #bootFromFlash}` is true, the instruction will be placed
    29     *  at "BEGIN", as defined in the linker command file.
    30     */
    31    @NoRuntime
    32    module Boot
    33    {
    34        /*!
    35         *  Boot from FLASH flag.  Default is true.
    36         *
    37         *  Set to true to enable booting the C28 from Flash.
    38         */
    39        metaonly config Bool bootFromFlash = true;
    40    };   
    41    /*
    42     *  @(#) ti.catalog.c2800.concertoInit; 1, 0, 0,21; 2-10-2012 12:08:40; /db/ztree/library/trees/platform/platform-n14x/src/
    43     */
    44