mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-28 12:39:16 +00:00
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>
14 lines
156 B
Plaintext
14 lines
156 B
Plaintext
SECTIONS
|
|
{
|
|
_start = .;
|
|
. = 0;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = 0x2000;
|
|
.text : { *(.text) }
|
|
. = 0x4000;
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|