1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-04-24 19:50:22 +00:00
Files
antonblanchard.microwatt/hello_world/powerpc.lds
Anton Blanchard 747c96b100 Cut down hello_world to fit in 4kB
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
2022-03-22 10:15:57 +11:00

14 lines
154 B
Plaintext

SECTIONS
{
_start = .;
. = 0;
.head : {
KEEP(*(.head))
}
. = 0x400;
.text : { *(.text) }
. = 0xA00;
.data : { *(.data) }
.bss : { *(.bss) }
}