aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/user/ase/dsp/test_dsp_r2_shra_qb.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcg/mips/user/ase/dsp/test_dsp_r2_shra_qb.c')
-rw-r--r--tests/tcg/mips/user/ase/dsp/test_dsp_r2_shra_qb.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/tcg/mips/user/ase/dsp/test_dsp_r2_shra_qb.c b/tests/tcg/mips/user/ase/dsp/test_dsp_r2_shra_qb.c
new file mode 100644
index 0000000000..48193de87a
--- /dev/null
+++ b/tests/tcg/mips/user/ase/dsp/test_dsp_r2_shra_qb.c
@@ -0,0 +1,30 @@
+#include<stdio.h>
+#include<assert.h>
+
+int main()
+{
+ int rd, rt;
+ int result;
+
+ rt = 0x12345678;
+ result = 0x02060A0F;
+
+ __asm
+ ("shra.qb %0, %1, 0x03\n\t"
+ : "=r"(rd)
+ : "r"(rt)
+ );
+ assert(rd == result);
+
+ rt = 0x87654321;
+ result = 0xF00C0804;
+
+ __asm
+ ("shra.qb %0, %1, 0x03\n\t"
+ : "=r"(rd)
+ : "r"(rt)
+ );
+ assert(rd == result);
+
+ return 0;
+}