hw/arm/virt: introduce DEFINE_VIRT_MACHINE
[qemu/ar7.git] / tests / tcg / mips / mips32-dsp / packrl_ph.c
blob1f8e69992503683386d9d6f64d2509f8af9131a1
1 #include<stdio.h>
2 #include<assert.h>
4 int main()
6 int rd, rs, rt;
7 int result;
9 rs = 0x12345678;
10 rt = 0x87654321;
11 result = 0x56788765;
13 __asm
14 ("packrl.ph %0, %1, %2\n\t"
15 : "=r"(rd)
16 : "r"(rs), "r"(rt)
18 assert(result == rd);
20 return 0;