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
/
repl_qb.c
blob
6631393ea13165ad29b37eb89878aa3aa7a4c276
1
#include<stdio.h>
2
#include<assert.h>
3
4
int
main
()
5
{
6
int
rd
,
result
;
7
8
result
=
0xBFBFBFBF
;
9
__asm
10
(
"repl.qb %0, 0xBF
\n\t
"
11
:
"=r"
(
rd
)
12
);
13
assert
(
rd
==
result
);
14
15
return
0
;
16
}