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
/
shra_ph.c
blob
a2dc014742dafe304540c2b31be259501ecbddf1
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
rd
,
rt
;
6
long long
result
;
7
8
rt
=
0x87654321
;
9
result
=
0xFFFFFFFFF0EC0864
;
10
11
__asm
12
(
"shra.ph %0, %1, 0x03
\n\t
"
13
:
"=r"
(
rd
)
14
:
"r"
(
rt
)
15
);
16
if
(
rd
!=
result
) {
17
printf
(
"shra.ph wrong
\n
"
);
18
19
return
-
1
;
20
}
21
22
return
0
;
23
}