summaryrefslogtreecommitdiffstats
path: root/picorv32/tests/auipc.S
diff options
context:
space:
mode:
Diffstat (limited to 'picorv32/tests/auipc.S')
-rw-r--r--picorv32/tests/auipc.S39
1 files changed, 0 insertions, 39 deletions
diff --git a/picorv32/tests/auipc.S b/picorv32/tests/auipc.S
deleted file mode 100644
index c67e3c9..0000000
--- a/picorv32/tests/auipc.S
+++ /dev/null
@@ -1,39 +0,0 @@
-# See LICENSE for license details.
-
-#*****************************************************************************
-# auipc.S
-#-----------------------------------------------------------------------------
-#
-# Test auipc instruction.
-#
-
-#include "riscv_test.h"
-#include "test_macros.h"
-
-RVTEST_RV32U
-RVTEST_CODE_BEGIN
-
- TEST_CASE(2, a0, 10000, \
- .align 3; \
- lla a0, 1f + 10000; \
- jal a1, 1f; \
- 1: sub a0, a0, a1; \
- )
-
- TEST_CASE(3, a0, -10000, \
- .align 3; \
- lla a0, 1f - 10000; \
- jal a1, 1f; \
- 1: sub a0, a0, a1; \
- )
-
- TEST_PASSFAIL
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
-
-RVTEST_DATA_END