Rev 3027 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3027 | decky | 1 | OUTPUT_FORMAT("ecoff-littlemips") |
2 | ENTRY(start) |
||
3 | |||
4 | SECTIONS { |
||
5 | .boot 0xbfc00000: AT (0) { |
||
6 | *(BOOTSTRAP); |
||
7 | *(.text); |
||
8 | |||
9 | *(.rodata); |
||
10 | *(.rodata.*); |
||
11 | *(.data); /* initialized data */ |
||
12 | *(.sdata); |
||
13 | *(.sdata2); |
||
14 | *(.sbss); |
||
15 | *(.scommon); |
||
16 | *(.bss); /* uninitialized static variables */ |
||
17 | *(COMMON); /* global variables */ |
||
18 | *(.reginfo); |
||
19 | [[COMPONENTS]] |
||
20 | } |
||
21 | } |