summaryrefslogtreecommitdiffstats
path: root/picorv32/tests/jal.S
diff options
context:
space:
mode:
Diffstat (limited to 'picorv32/tests/jal.S')
-rw-r--r--picorv32/tests/jal.S62
1 files changed, 0 insertions, 62 deletions
diff --git a/picorv32/tests/jal.S b/picorv32/tests/jal.S
deleted file mode 100644
index 38a1c76..0000000
--- a/picorv32/tests/jal.S
+++ /dev/null
@@ -1,62 +0,0 @@
-# See LICENSE for license details.
-
-#*****************************************************************************
-# jal.S
-#-----------------------------------------------------------------------------
-#
-# Test jal instruction.
-#
-
-#include "riscv_test.h"
-#include "test_macros.h"
-
-.option norvc
-
-RVTEST_RV32U
-RVTEST_CODE_BEGIN
-
- #-------------------------------------------------------------
- # Test 2: Basic test
- #-------------------------------------------------------------
-
-test_2:
- li TESTNUM, 2
- li ra, 0
-
-linkaddr_2:
- jal target_2
- nop
- nop
-
- j fail
-
-target_2:
- la x2, linkaddr_2
- addi x2, x2, 4
- bne x2, ra, fail
-
- #-------------------------------------------------------------
- # Test delay slot instructions not executed nor bypassed
- #-------------------------------------------------------------
-
- TEST_CASE( 3, x2, 3, \
- li x2, 1; \
- jal 1f; \
- addi x2, x2, 1; \
- addi x2, x2, 1; \
- addi x2, x2, 1; \
- addi x2, x2, 1; \
-1: addi x2, x2, 1; \
- addi x2, x2, 1; \
- )
-
- TEST_PASSFAIL
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
-
-RVTEST_DATA_END