1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-02-01 14:22:14 +00:00
Files
antonblanchard.microwatt/tests/xics/powerpc.lds
Michael Neuling 0076f8bf1d XICS test case
Checks interrupt masking and priorities.

Adds to `make test_xics` which is run in `make check` also.

Signed-off-by: Michael Neuling <mikey@neuling.org>
2020-04-23 16:36:49 +10:00

14 lines
155 B
Plaintext

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