aboutsummaryrefslogtreecommitdiff
path: root/isa/rv64ui/remw.S
diff options
context:
space:
mode:
Diffstat (limited to 'isa/rv64ui/remw.S')
-rw-r--r--isa/rv64ui/remw.S42
1 files changed, 0 insertions, 42 deletions
diff --git a/isa/rv64ui/remw.S b/isa/rv64ui/remw.S
deleted file mode 100644
index 3ae8e3d..0000000
--- a/isa/rv64ui/remw.S
+++ /dev/null
@@ -1,42 +0,0 @@
-# See LICENSE for license details.
-
-#*****************************************************************************
-# remw.S
-#-----------------------------------------------------------------------------
-#
-# Test remw instruction.
-#
-
-#include "riscv_test.h"
-#include "test_macros.h"
-
-RVTEST_RV64U
-RVTEST_CODE_BEGIN
-
- #-------------------------------------------------------------
- # Arithmetic tests
- #-------------------------------------------------------------
-
- TEST_RR_OP( 2, remw, 2, 20, 6 );
- TEST_RR_OP( 3, remw, -2, -20, 6 );
- TEST_RR_OP( 4, remw, 2, 20, -6 );
- TEST_RR_OP( 5, remw, -2, -20, -6 );
-
- TEST_RR_OP( 6, remw, 0, -1<<31, 1 );
- TEST_RR_OP( 7, remw, 0, -1<<31, -1 );
-
- TEST_RR_OP( 8, remw, -1<<31, -1<<31, 0 );
- TEST_RR_OP( 9, remw, 1, 1, 0 );
- TEST_RR_OP(10, remw, 0, 0, 0 );
- TEST_RR_OP(11, remw, 0xfffffffffffff897,0xfffffffffffff897, 0 );
-
- TEST_PASSFAIL
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
-
-RVTEST_DATA_END