mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-02-01 14:22:14 +00:00
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>
14 lines
155 B
Plaintext
14 lines
155 B
Plaintext
SECTIONS
|
|
{
|
|
_start = .;
|
|
. = 0;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = 0x1000;
|
|
.text : { *(.text) }
|
|
. = 0x3000;
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|