repo.or.cz
/
qemu
/
agraf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git]
/
tests
/
tcg
/
mips
/
mips64-dsp
/
preceu_qh_obr.c
blob
9af3b6372e32b41e5c65c510591fc331c99e412b
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
rd
,
rt
,
result
;
6
7
rt
=
0x123456789ABCDEF0
;
8
result
=
0x009A00BC00DE00F0
;
9
10
__asm
11
(
"preceu.qh.obr %0, %1
\n\t
"
12
:
"=r"
(
rd
)
13
:
"r"
(
rt
)
14
);
15
16
if
(
result
!=
rd
) {
17
printf
(
"preceu.qh.obr error
\n
"
);
18
19
return
-
1
;
20
}
21
22
return
0
;
23
}