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_ph.c
blob
21074953bdde5824de0060e69bfba6ca2e03cd6c
1
#include<stdio.h>
2
#include<assert.h>
3
4
int
main
()
5
{
6
int
rd
,
result
;
7
8
result
=
0x01BF01BF
;
9
__asm
10
(
"repl.ph %0, 0x1BF
\n\t
"
11
:
"=r"
(
rd
)
12
);
13
assert
(
rd
==
result
);
14
15
result
=
0x01FF01FF
;
16
__asm
17
(
"repl.ph %0, 0x01FF
\n\t
"
18
:
"=r"
(
rd
)
19
);
20
assert
(
rd
==
result
);
21
22
return
0
;
23
}