Merge tag 'qemu-macppc-20230206' of https://github.com/mcayland/qemu into staging
[qemu.git] / tests / tcg / mips / user / ase / dsp / test_dsp_r1_mflo.c
blobcaeafdb05ce426a7624263906625f685ada3d590
1 #include<stdio.h>
2 #include<assert.h>
4 int main()
6 int acli, aclo;
7 int result;
9 acli = 0x004433;
10 result = 0x004433;
12 __asm
13 ("mthi %1, $ac1\n\t"
14 "mfhi %0, $ac1\n\t"
15 : "=r"(aclo)
16 : "r"(acli)
18 assert(result == aclo);
20 return 0;