aboutsummaryrefslogtreecommitdiffstats
path: root/tests/divu.S
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-04-10 16:54:35 +0200
committerClifford Wolf <clifford@clifford.at>2016-04-10 16:54:35 +0200
commit00dd6ac38ee7e0b948a0a30d36f2e7a6fc2369ea (patch)
tree3e9c9c7b9fb8215da0a309cab8845e7bbb87d305 /tests/divu.S
parent8f5845310950ee00dbc3084e76e3f11dd8493158 (diff)
downloadpicorv32-00dd6ac38ee7e0b948a0a30d36f2e7a6fc2369ea.tar.gz
picorv32-00dd6ac38ee7e0b948a0a30d36f2e7a6fc2369ea.zip
Added ENABLE_DIV and picorv32_pcpi_div
Diffstat (limited to 'tests/divu.S')
-rw-r--r--tests/divu.S41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/divu.S b/tests/divu.S
new file mode 100644
index 0000000..cd348c9
--- /dev/null
+++ b/tests/divu.S
@@ -0,0 +1,41 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# divu.S
+#-----------------------------------------------------------------------------
+#
+# Test divu instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV32U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP( 2, divu, 3, 20, 6 );
+ TEST_RR_OP( 3, divu, 715827879, -20, 6 );
+ TEST_RR_OP( 4, divu, 0, 20, -6 );
+ TEST_RR_OP( 5, divu, 0, -20, -6 );
+
+ TEST_RR_OP( 6, divu, -1<<31, -1<<31, 1 );
+ TEST_RR_OP( 7, divu, 0, -1<<31, -1 );
+
+ TEST_RR_OP( 8, divu, -1, -1<<31, 0 );
+ TEST_RR_OP( 9, divu, -1, 1, 0 );
+ TEST_RR_OP(10, divu, -1, 0, 0 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END