s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / cmpgu_eq_qb.c
blobb41c4430fdcf8fc22560dfac3365b2f05fc0a4e3
1 #include "io.h"
3 int main(void)
5 long long rd, rs, rt;
6 long long result;
8 rs = 0x11777066;
9 rt = 0x55AA70FF;
10 result = 0x02;
11 __asm
12 ("cmpgu.eq.qb %0, %1, %2\n\t"
13 : "=r"(rd)
14 : "r"(rs), "r"(rt)
17 if (rd != result) {
18 printf("cmpgu.eq.ph wrong\n");
20 return -1;
23 rs = 0x11777066;
24 rt = 0x11777066;
25 result = 0x0F;
26 __asm
27 ("cmpgu.eq.qb %0, %1, %2\n\t"
28 : "=r"(rd)
29 : "r"(rs), "r"(rt)
31 if (rd != result) {
32 printf("cmpgu.eq.ph wrong\n");
34 return -1;
37 return 0;