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

21 lines
274 B
C
Raw Normal View History

#include<stdio.h>
#include<assert.h>
int main()
{
int rd, rt;
int result;
rt = 0x12345678;
result = 0x009102B3;
__asm
("shrl.ph %0, %1, 0x05\n\t"
: "=r"(rd)
: "r"(rt)
);
assert(rd == result);
return 0;
}