qemu/tests/tcg/mips/mips32-dspr2/addqh_ph.c

31 lines
516 B
C
Raw Normal View History

#include<stdio.h>
#include<assert.h>
int main()
{
int rd, rs, rt;
int result;
rs = 0x706A13FE;
rt = 0x13065174;
result = 0x41B832B9;
__asm
("addqh.ph %0, %1, %2\n\t"
: "=r"(rd)
: "r"(rs), "r"(rt)
);
assert(rd == result);
rs = 0x81000100;
rt = 0xc2000100;
result = 0xa1800100;
__asm
("addqh.ph %0, %1, %2\n\t"
: "=r"(rd)
: "r"(rs), "r"(rt)
);
assert(rd == result);
return 0;
}