b16e7f631ffcd89aa458c84373cccd30a314c3a3
[tpg/acess2.git] / Kernel / arch / arm7 / link.ld
1 ENTRY (_start)
2
3 _kernel_base = 0x80000000;
4
5 SECTIONS
6 {
7         . = 0;
8         . += _kernel_base;
9         .text : AT( ADDR(.text) - _kernel_base )
10         {
11                 *(.text*)
12                 *(.rodata*)
13         }
14         .data : AT( ADDR(.text) - _kernel_base )
15         {
16                 *(.padata)
17                 *(.data*)
18         }
19         .bss : AT( ADDR(.text) - _kernel_base )
20         {
21                 *(.bss*)
22                 *(COMMON*)
23         }
24 }

UCC git Repository :: git.ucc.asn.au