hw/arm/virt: introduce DEFINE_VIRT_MACHINE
[qemu/ar7.git] / tests / tcg / mips / mips32-dsp / replv_qb.c
blobdd1271fedff0ffb1c1a301ba8e7fb431aa2e80a5
1 #include<stdio.h>
2 #include<assert.h>
4 int main()
6 int rd, rt;
7 int result;
9 rt = 0x12345678;
10 result = 0x78787878;
11 __asm
12 ("replv.qb %0, %1\n\t"
13 : "=r"(rd)
14 : "r"(rt)
16 assert(rd == result);
18 return 0;