aboutsummaryrefslogtreecommitdiff
path: root/isa/rv32si/scall.S
diff options
context:
space:
mode:
Diffstat (limited to 'isa/rv32si/scall.S')
-rw-r--r--isa/rv32si/scall.S42
1 files changed, 3 insertions, 39 deletions
diff --git a/isa/rv32si/scall.S b/isa/rv32si/scall.S
index a036aaf..5b732c8 100644
--- a/isa/rv32si/scall.S
+++ b/isa/rv32si/scall.S
@@ -1,43 +1,7 @@
# See LICENSE for license details.
-#*****************************************************************************
-# scall.S
-#-----------------------------------------------------------------------------
-#
-# Test syscall trap.
-#
-
#include "riscv_test.h"
-#include "test_macros.h"
-
-RVTEST_RV32S
-RVTEST_CODE_BEGIN
-
- la t0, stvec
- csrw stvec, t0
-
- li TESTNUM, 2
- scall
- j fail
-
- j pass
-
- TEST_PASSFAIL
-
-stvec:
- li t1, CAUSE_ECALL
- csrr t0, scause
- bne t0, t1, fail
- csrr t0, sepc
- addi t0, t0, 8
- csrw sepc, t0
- sret
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
+#undef RVTEST_RV64S
+#define RVTEST_RV64S RVTEST_RV32S
-RVTEST_DATA_END
+#include "../rv64si/scall.S"