mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-03-04 02:14:50 +00:00
14 lines
154 B
Plaintext
14 lines
154 B
Plaintext
SECTIONS
|
|
{
|
|
_start = .;
|
|
. = 0;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = 0x400;
|
|
.text : { *(.text) }
|
|
. = 0xA00;
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|