mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
target-or32: Add testcases
Add testcases for OpenRISC. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
d962783e98
commit
d901eff3e6
52 changed files with 2579 additions and 0 deletions
31
tests/tcg/openrisc/test_movhi.c
Normal file
31
tests/tcg/openrisc/test_movhi.c
Normal file
|
@ -0,0 +1,31 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int a;
|
||||
int result;
|
||||
|
||||
result = 0x1222;
|
||||
__asm
|
||||
("l.movhi r3, 0x1222\n\t"
|
||||
"l.srli %0, r3, 16\n\t"
|
||||
: "=r"(a)
|
||||
);
|
||||
if (a != result) {
|
||||
printf("movhi error\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
result = 0x1111;
|
||||
__asm
|
||||
("l.movhi r8, 0x1111\n\t"
|
||||
"l.srli %0, r8, 16\n\t"
|
||||
: "=r"(a)
|
||||
);
|
||||
if (a != result) {
|
||||
printf("movhi error\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue