s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / shra_r_qh.c
blobd5c2110efea03492f6c1aed3fa3dcf81bc2d8e50
1 #include "io.h"
3 int main(void)
5 long long rd, rt;
6 long long res;
8 rt = 0x8512345654323454;
9 res = 0xf0a2068b0a86068b;
11 __asm
12 ("shra_r.qh %0, %1, 0x3\n\t"
13 : "=r"(rd)
14 : "r"(rt)
17 if (rd != res) {
18 printf("shra_r.qh error\n");
19 return -1;
22 rt = 0x8512345654323454;
23 res = 0x8512345654323454;
25 __asm
26 ("shra_r.qh %0, %1, 0x0\n\t"
27 : "=r"(rd)
28 : "r"(rt)
31 if (rd != res) {
32 printf("shra_r.qh error1\n");
33 return -1;
36 return 0;