]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/ibl.git/blob - src/util/spiConfig/spiparam.cmd
First version working on 6608 EVM over SPI boot
[keystone-rtos/ibl.git] / src / util / spiConfig / spiparam.cmd
1 /*************************************************************************
2  * @file  i2cparam_c6472.cmd
3  *
4  * @brief  Places the i2c parameter writer program into memory
5  *
6  *************************************************************************/
8 /* Object files included in linker invokation */
10 -c
11 -a
12 -stack 0x400
14 MEMORY
15 {
16    STACK   :  origin = 0x810000 length = 0x0400
17    TEXT    :  origin = 0x810400 length = 0x9000
18    DATA    :  origin = 0x819400 length = 0x2000
19    SYSMEM  :  origin = 0x829400 length = 0x0800
20 }
22 SECTIONS
23 {
24         .stack > STACK
26         .text   > TEXT
27         .const  > TEXT
28         .switch > TEXT
29         .cinit  > TEXT
31         .far    > DATA
32         .bss    > DATA
33         .data   > DATA
35         .sysmem > SYSMEM
37 }
38