mirror of
https://git.proxmox.com/git/qemu
synced 2025-06-16 09:01:28 +00:00

Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
17 lines
213 B
C
17 lines
213 B
C
#include<stdio.h>
|
|
#include<assert.h>
|
|
|
|
int main()
|
|
{
|
|
int rd, result;
|
|
|
|
result = 0xBFBFBFBF;
|
|
__asm
|
|
("repl.qb %0, 0xBF\n\t"
|
|
: "=r"(rd)
|
|
);
|
|
assert(rd == result);
|
|
|
|
return 0;
|
|
}
|