blob: 5d5334b92f4bb119916d71e97ea91374b1075d96 [file] [log] [blame]
Björn Stenbergd42d78f2002-04-15 08:35:08 +00001ENTRY(_start)
2OUTPUT_FORMAT(elf32-sh)
3SECTIONS
4{
5 .vectors 0x09000000 :
6 {
7 *(.vectors);
8 . = ALIGN(0x200);
9 start.o(.text)
10 *(.rodata)
11 }
12
Björn Stenbergd42d78f2002-04-15 08:35:08 +000013 .text :
14 {
15 *(.text)
16 }
17
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +000018 .bss :
19 {
20 _stack = . + 0x1000;
21 _stub_stack = _stack + 0x1000;
22 }
23
Björn Stenbergd42d78f2002-04-15 08:35:08 +000024 .pad 0x0900C800 :
25 {
26 LONG(0);
27 }
28 }