s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / precequ_qh_obra.c
blob3aa0e096cac8e3094f1917b7dfd7094b55f6e6bf
1 #include "io.h"
3 int main(void)
5 long long rd, rt, result;
7 rt = 0x123456789ABCDEF0;
8 result = 0x1A003C005D007000;
10 __asm
11 ("precequ.qh.obra %0, %1\n\t"
12 : "=r"(rd)
13 : "r"(rt)
16 if (result != rd) {
17 printf("precequ.qh.obra error\n");
19 return -1;
22 return 0;