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
/
mips32-dsp
/
shrav_ph.c
blob
6e42aaf8e1a7f3f1f8498128308b7265a6723191
1
#include<stdio.h>
2
#include<assert.h>
3
4
int
main
()
5
{
6
int
rd
,
rs
,
rt
;
7
int
result
;
8
9
rs
=
0x03
;
10
rt
=
0x87654321
;
11
result
=
0xF0EC0864
;
12
13
__asm
14
(
"shrav.ph %0, %1, %2
\n\t
"
15
:
"=r"
(
rd
)
16
:
"r"
(
rt
),
"r"
(
rs
)
17
);
18
assert
(
rd
==
result
);
19
20
rs
=
0x00
;
21
rt
=
0x87654321
;
22
result
=
0x87654321
;
23
24
__asm
25
(
"shrav.ph %0, %1, %2
\n\t
"
26
:
"=r"
(
rd
)
27
:
"r"
(
rt
),
"r"
(
rs
)
28
);
29
assert
(
rd
==
result
);
30
31
return
0
;
32
}