When we read the year from the RTC, it can be so totally messed up so that
[kugel-rb.git] / gdb / linker.cfg
blob5d5334b92f4bb119916d71e97ea91374b1075d96
1 ENTRY(_start)
2 OUTPUT_FORMAT(elf32-sh)
3 SECTIONS
5     .vectors 0x09000000 :
6     {
7         *(.vectors);
8         . = ALIGN(0x200);
9         start.o(.text)
10         *(.rodata)
11     }
13     .text :
14     {
15         *(.text)
16     }
18     .bss :
19     {
20        _stack = . + 0x1000;
21        _stub_stack = _stack + 0x1000;
22     }
24     .pad 0x0900C800 :
25     {
26         LONG(0);
27     }
28   }