source: tt-loader/2nd/arm.ld @ 12

Last change on this file since 12 was 11, checked in by guillaume, 16 years ago

Publication tt-loader v0.1

File size: 468 bytes
Line 
1/*STARTUP(main.o)*/
2ENTRY(_start)
3
4MEMORY
5{
6/*      sram (rwx) : ORIGIN = 0x20000000, LENGTH = 256K */
7        sram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
8}
9
10SECTIONS
11{
12
13/* TEXT */
14        .text 0x20000400 :
15        {
16                *(.text.start)
17                *(.text)
18        } > sram
19
20        .rodata ALIGN(0x04) :
21        {
22                *(.rodata)
23        } > sram
24
25        .data ALIGN(0x04) :
26        {
27                *(.data.pirq)
28                *(.data)
29                *(.sdata)
30        } > sram
31
32        .bss (NOLOAD) :
33        {
34                bstart = . ;
35                *(.ram.start)
36                *(.bss)
37                *(.sbss)
38                *(COMMON)
39                bend = . ;
40        } > sram
41}
Note: See TracBrowser for help on using the repository browser.