1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-01-28 12:39:16 +00:00
Files
antonblanchard.microwatt/tests/privileged/powerpc.lds
Paul Mackerras 10f4be4309 tests: Add a test for privileged instruction interrupts
This adds a test that tries to execute various privileged instructions
with MSR[PR] = 1.  This also incidentally tests some of the MSR bit
manipulations.

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
2020-04-29 10:53:32 +10:00

14 lines
156 B
Plaintext

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