mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-11 23:43:15 +00:00
The two tests obtain NIA with bl+mflr+addi and then compare it against addpcis with the minimum and maximum immediate operand values. They were also tested on a real POWER9 system (in userspace) for good measure. Signed-off-by: Shawn Anastasio <shawn@anastas.io>
14 lines
156 B
Plaintext
14 lines
156 B
Plaintext
SECTIONS
|
|
{
|
|
_start = .;
|
|
. = 0;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = 0x1000;
|
|
.text : { *(.text) }
|
|
. = 0x2000;
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|