d70080c4e3
Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
21 lines
262 B
C
21 lines
262 B
C
#include<stdio.h>
|
|
#include<assert.h>
|
|
|
|
int main()
|
|
{
|
|
int rd, rs;
|
|
int result;
|
|
|
|
rs = 0x12345678;
|
|
result = 0x114;
|
|
|
|
__asm
|
|
("raddu.w.qb %0, %1\n\t"
|
|
: "=r"(rd)
|
|
: "r"(rs)
|
|
);
|
|
assert(rd == result);
|
|
|
|
return 0;
|
|
}
|