]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/blob - packages/ti/boot/sbl/tools/omapl13x_boot_utils/OMAP-L137/GNU/AISUtils/AISextra/src/ARM_AISExtra.lds
Removed stale IPC examples
[processor-sdk/pdk.git] / packages / ti / boot / sbl / tools / omapl13x_boot_utils / OMAP-L137 / GNU / AISUtils / AISextra / src / ARM_AISExtra.lds
1 /*
2  *  Desc: Linker command file sft application program.
3  *  Auth: Daniel Allred
4  */
6 ENTRY(start)
7 SECTIONS 
8 {
9   
10   EXTERNAL_RAM_SIZE   = 0x10000000;  
11   EXTERNAL_RAM_START  = 0xC0000000;
12   EXTERNAL_RAM_END    = EXTERNAL_RAM_START + EXTERNAL_RAM_SIZE;
13   
14   ASYNC_MEM_START     = 0x02000000;
16   IRAM_START          = 0x80000000;
17   IRAM_SIZE           = 0x00008000;
19   INTERNAL_RAM_START = 0x80000000;
20   INTERNAL_RAM_SIZE  = 0x00008000;
21   
22   STACK_START         = 0x80008800;
23   STACK_SIZE          = 0x00000800;
24   
25   . = IRAM_START;
26   .text    : 
27   {
28     *(.text:.start)
29     *(.text)
30     . = ALIGN(4);
32   }
33   
34   /* Move into DRAM for placing const and data sections */
35   .rodata    :
36   {
37     *(.rodata*)
38     *(.rodata)
39     . = ALIGN(4);
40   }  
41   .data    : 
42   {
43     *(.data)
44     . = ALIGN(4);
45   }
46         
47   .bss    :
48   {
49     *(.bss) *(COMMON)
50     . = ALIGN(4);
51   }
52 }