repo.or.cz
/
qemu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'qemu-macppc-20230206' of https://github.com/mcayland/qemu into staging
[qemu.git]
/
tests
/
tcg
/
mips
/
user
/
ase
/
dsp
/
test_dsp_r1_bitrev.c
blob
04d8a3844eb8d773156fd573d35357a2d8367756
1
#include<stdio.h>
2
#include<assert.h>
3
4
int
main
()
5
{
6
int
rd
,
rt
;
7
int
result
;
8
9
rt
=
0x12345678
;
10
result
=
0x00001E6A
;
11
12
__asm
13
(
"bitrev %0, %1
\n\t
"
14
:
"=r"
(
rd
)
15
:
"r"
(
rt
)
16
);
17
assert
(
rd
==
result
);
18
19
return
0
;
20
}