mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-11 23:43:15 +00:00
Make sure the SPRs are initialized and we can't read X state. (Mikey: rebased and added console/bin file for testing) Signed-off-by: Anton Blanchard <anton@linux.ibm.com> Signed-off-by: Michael Neuling <mikey@neuling.org>
14 lines
156 B
Plaintext
14 lines
156 B
Plaintext
SECTIONS
|
|
{
|
|
_start = .;
|
|
. = 0;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = 0x1000;
|
|
.text : { *(.text) }
|
|
. = 0x2000;
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|