code-comments for when ASyncBridge is deployed
[ls2.git] / hello_world / powerpc.lds.S
1 SECTIONS
2 {
3 . = BOOT_INIT_BASE;
4 _start = .;
5 start = _start;
6 . = BOOT_INIT_BASE;
7 .head : {
8 KEEP(*(.head))
9 }
10 . = BOOT_INIT_BASE + 0x1000;
11 .text : { *(.text) }
12 . = BOOT_INIT_BASE + 0x1800;
13 .data : { *(.data) }
14 .bss : { *(.bss) }
15 }
16