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