1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-03-04 02:14:50 +00:00
Files
2022-02-01 20:44:26 +11:00

14 lines
154 B
Plaintext

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