d70080c4e3
Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
28 lines
502 B
C
28 lines
502 B
C
#include "io.h"
|
|
|
|
int main(void)
|
|
{
|
|
long long rd, rs, rt, dsp;
|
|
long long res, resdsp;
|
|
|
|
rs = 0x7fff567812345678;
|
|
rt = 0x8765432187654321;
|
|
|
|
res = 0xffac24ac00860086;
|
|
resdsp = 0x1;
|
|
|
|
__asm
|
|
("precrqu_s.ob.qh %0, %2, %3\n\t"
|
|
"rddsp %1\n\t"
|
|
: "=r"(rd), "=r"(dsp)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
dsp = (dsp >> 22) & 0x1;
|
|
if ((rd != res) || (dsp != resdsp)) {
|
|
printf("precrq_s.ob.qh error\n");
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|