mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 20:33:54 -06:00

Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
21 lines
302 B
C
21 lines
302 B
C
#include<stdio.h>
|
|
#include<assert.h>
|
|
|
|
int main()
|
|
{
|
|
int acli, aclo;
|
|
int result;
|
|
|
|
acli = 0x004433;
|
|
result = 0x004433;
|
|
|
|
__asm
|
|
("mthi %1, $ac1\n\t"
|
|
"mfhi %0, $ac1\n\t"
|
|
: "=r"(aclo)
|
|
: "r"(acli)
|
|
);
|
|
assert(result == aclo);
|
|
|
|
return 0;
|
|
}
|