diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-01-24 16:04:07 +0100 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-01-24 17:48:33 +0100 |
commit | dcca150f838ebc31b6fc0ec750cc0da1ef01f837 (patch) | |
tree | 4c861e96fa50fae99438a41c7d33ed9830006aed /tests/tcg/mips/mips64-dsp/dextp.c | |
parent | 5e0aa63b084d6a99bbb74cfc5ad9852f7746f469 (diff) | |
download | qemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.zip qemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.tar.gz qemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.tar.bz2 |
tests: tcg: mips: Remove old directories
Remove old test directories.
Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Diffstat (limited to 'tests/tcg/mips/mips64-dsp/dextp.c')
-rw-r--r-- | tests/tcg/mips/mips64-dsp/dextp.c | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/tcg/mips/mips64-dsp/dextp.c b/tests/tcg/mips/mips64-dsp/dextp.c deleted file mode 100644 index a469cc0..0000000 --- a/tests/tcg/mips/mips64-dsp/dextp.c +++ /dev/null @@ -1,54 +0,0 @@ -#include "io.h" - -int main(void) -{ - long long rt, dsp; - long long achi, acli; - long long res, resdsp; - int rs; - - rs = 0xabcd1234; - - achi = 0x12345678; - acli = 0x87654321; - res = 0xff; - resdsp = 0x0; - - __asm - ("mthi %2, $ac1\n\t" - "mtlo %3, $ac1\n\t" - "wrdsp %4\n\t" - "dextp %0, $ac1, 0x7\n\t" - "rddsp %1\n\t" - : "=r"(rt), "=r"(dsp) - : "r"(achi), "r"(acli), "r"(rs) - ); - dsp = (dsp >> 14) & 0x1; - if ((dsp != resdsp) || (rt != res)) { - printf("dextp error\n"); - return -1; - } - - rs = 0xabcd1200; - - achi = 0x12345678; - acli = 0x87654321; - resdsp = 0x1; - - __asm - ("mthi %2, $ac1\n\t" - "mtlo %3, $ac1\n\t" - "wrdsp %4\n\t" - "dextp %0, $ac1, 0x7\n\t" - "rddsp %1\n\t" - : "=r"(rt), "=r"(dsp) - : "r"(achi), "r"(acli), "r"(rs) - ); - dsp = (dsp >> 14) & 0x1; - if (dsp != resdsp) { - printf("dextp error\n"); - return -1; - } - - return 0; -} |