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
/
shrl_ob.c
blob
a1145713a0818533e416186c0f1b418eb55ed458
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
rd
,
rt
;
6
long long
res
;
7
8
rt
=
0xab76543212345678
;
9
res
=
0x150e0a0602060a0f
;
10
11
__asm
12
(
"shrl.ob %0, %1, 0x3
\n\t
"
13
:
"=r"
(
rd
)
14
:
"r"
(
rt
)
15
);
16
17
if
(
rd
!=
res
) {
18
printf
(
"shrl.ob error
\n
"
);
19
return
-
1
;
20
}
21
22
rt
=
0xab76543212345678
;
23
res
=
0xab76543212345678
;
24
25
__asm
26
(
"shrl.ob %0, %1, 0x0
\n\t
"
27
:
"=r"
(
rd
)
28
:
"r"
(
rt
)
29
);
30
31
if
(
rd
!=
res
) {
32
printf
(
"shrl.ob error
\n
"
);
33
return
-
1
;
34
}
35
36
37
return
0
;
38
}