s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / precequ_qh_obl.c
blob176d2365a88c64231dde1faa0e33254ceb6d5d5b
1 #include "io.h"
3 int main(void)
5 long long rd, rt, result;
6 rt = 0x123456789ABCDEF0;
7 result = 0x09001A002B003C00;
9 __asm
10 ("precequ.qh.obla %0, %1\n\t"
11 : "=r"(rd)
12 : "r"(rt)
15 if (result != rd) {
16 printf("precequ.qh.obla error\n");
18 return -1;
21 return 0;