set start to _start in hello_world lds script
[ls2.git] / hello_world / powerpc.lds
1 SECTIONS
2 {
3 _start = .;
4 start = _start;
5 . = 0;
6 .head : {
7 KEEP(*(.head))
8 }
9 . = 0x1000;
10 .text : { *(.text) }
11 . = 0x1800;
12 .data : { *(.data) }
13 .bss : { *(.bss) }
14 }