summaryrefslogtreecommitdiffstats
path: root/tests/remu.S
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-11-24 22:27:15 +0000
committerYann Herklotz <git@yannherklotz.com>2022-11-24 22:27:15 +0000
commit59c9a162631b78eff84e2002478413b98c2cffbb (patch)
tree7d604206a2deb29c9f097ff1f3b7de78f44b34a3 /tests/remu.S
downloadbutterstick-59c9a162631b78eff84e2002478413b98c2cffbb.tar.gz
butterstick-59c9a162631b78eff84e2002478413b98c2cffbb.zip
Move all files
Diffstat (limited to 'tests/remu.S')
-rw-r--r--tests/remu.S41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/remu.S b/tests/remu.S
new file mode 100644
index 0000000..a96cfc1
--- /dev/null
+++ b/tests/remu.S
@@ -0,0 +1,41 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# remu.S
+#-----------------------------------------------------------------------------
+#
+# Test remu instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV32U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP( 2, remu, 2, 20, 6 );
+ TEST_RR_OP( 3, remu, 2, -20, 6 );
+ TEST_RR_OP( 4, remu, 20, 20, -6 );
+ TEST_RR_OP( 5, remu, -20, -20, -6 );
+
+ TEST_RR_OP( 6, remu, 0, -1<<31, 1 );
+ TEST_RR_OP( 7, remu, -1<<31, -1<<31, -1 );
+
+ TEST_RR_OP( 8, remu, -1<<31, -1<<31, 0 );
+ TEST_RR_OP( 9, remu, 1, 1, 0 );
+ TEST_RR_OP(10, remu, 0, 0, 0 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END