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
/
cmpgu_eq_qb.c
blob
b41c4430fdcf8fc22560dfac3365b2f05fc0a4e3
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
rd
,
rs
,
rt
;
6
long long
result
;
7
8
rs
=
0x11777066
;
9
rt
=
0x55AA70FF
;
10
result
=
0x02
;
11
__asm
12
(
"cmpgu.eq.qb %0, %1, %2
\n\t
"
13
:
"=r"
(
rd
)
14
:
"r"
(
rs
),
"r"
(
rt
)
15
);
16
17
if
(
rd
!=
result
) {
18
printf
(
"cmpgu.eq.ph wrong
\n
"
);
19
20
return
-
1
;
21
}
22
23
rs
=
0x11777066
;
24
rt
=
0x11777066
;
25
result
=
0x0F
;
26
__asm
27
(
"cmpgu.eq.qb %0, %1, %2
\n\t
"
28
:
"=r"
(
rd
)
29
:
"r"
(
rs
),
"r"
(
rt
)
30
);
31
if
(
rd
!=
result
) {
32
printf
(
"cmpgu.eq.ph wrong
\n
"
);
33
34
return
-
1
;
35
}
36
37
return
0
;
38
}