source: latest/examples/soclib_date04/timer4_gmn_handmade/soft/ldscript @ 1

Last change on this file since 1 was 1, checked in by buchmann, 17 years ago

Initial import from CVS repository

File size: 566 bytes
Line 
1SECTIONS
2{
3   . = 0x80000080;
4   .excep : {
5      ./exception.o
6   }
7
8   . = 0xbfc00000;
9   .reset : {
10      ./reset.o
11   }
12
13   . = 0x00400000;
14   .text : {
15      *(.text)
16   }
17   . = 0x10000000;
18   .rodata : {
19      *(.rodata)
20      . = ALIGN(4);
21   }
22   .data  : {
23      *(.data)
24   }
25   .sdata : {
26      *(.lit8)
27      *(.lit4)
28      *(.sdata)
29   }
30   _gp = .;
31   . = ALIGN(4);
32   _edata = .;
33   .sbss  : {
34      *(.sbss)
35      *(.scommon)
36   }
37   .bss   : {
38      *(.bss)
39      *(COMMON)
40   }
41   . = ALIGN(4);
42   _end = .;
43   _stack = 0x10000000 + 0x00001000;
44}
Note: See TracBrowser for help on using the repository browser.