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