]> git.proxmox.com Git - mirror_qemu.git/blob - tests/tcg/mips/mips64-dsp/mtlo.c
target-mips: Add ASE DSP testcases
[mirror_qemu.git] / tests / tcg / mips / mips64-dsp / mtlo.c
1 #include "io.h"
2
3 int main(void)
4 {
5 long long acli, aclo;
6 long long result;
7
8 acli = 0x004433;
9 result = 0x004433;
10
11 __asm
12 ("mthi %1, $ac1\n\t"
13 "mfhi %0, $ac1\n\t"
14 : "=r"(aclo)
15 : "r"(acli)
16 );
17 if (result != aclo) {
18 printf("mtlo wrong\n");
19 }
20
21 return 0;
22 }