]> git.proxmox.com Git - mirror_qemu.git/blob - tests/tcg/mips/mips64-dsp/shrl_qb.c
target-mips: Add ASE DSP testcases
[mirror_qemu.git] / tests / tcg / mips / mips64-dsp / shrl_qb.c
1 #include "io.h"
2
3 int main(void)
4 {
5 long long rd, rt;
6 long long result;
7
8 rt = 0x12345678;
9 result = 0x00010203;
10
11 __asm
12 ("shrl.qb %0, %1, 0x05\n\t"
13 : "=r"(rd)
14 : "r"(rt)
15 );
16 if (rd != result) {
17 printf("shrl.qb wrong\n");
18
19 return -1;
20 }
21
22 return 0;
23 }