Last change
on this file since 11 was
11,
checked in by guillaume, 17 years ago
|
Publication tt-loader v0.1
|
File size:
468 bytes
|
Line | |
---|
1 | /*STARTUP(main.o)*/ |
---|
2 | ENTRY(_start) |
---|
3 | |
---|
4 | MEMORY |
---|
5 | { |
---|
6 | /* sram (rwx) : ORIGIN = 0x20000000, LENGTH = 256K */ |
---|
7 | sram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K |
---|
8 | } |
---|
9 | |
---|
10 | SECTIONS |
---|
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.