aboutsummaryrefslogtreecommitdiff
path: root/isa/rv64mi/mcsr.S
diff options
context:
space:
mode:
Diffstat (limited to 'isa/rv64mi/mcsr.S')
-rw-r--r--isa/rv64mi/mcsr.S6
1 files changed, 5 insertions, 1 deletions
diff --git a/isa/rv64mi/mcsr.S b/isa/rv64mi/mcsr.S
index 8a451ca..2eeb14c 100644
--- a/isa/rv64mi/mcsr.S
+++ b/isa/rv64mi/mcsr.S
@@ -13,8 +13,12 @@
RVTEST_RV64M
RVTEST_CODE_BEGIN
- # Check that mcpuid reports RV64
+ # Check that mcpuid reports the correct XLEN
+#ifdef __riscv64
TEST_CASE(2, a0, 0x2, csrr a0, misa; srl a0, a0, 62)
+#else
+ TEST_CASE(2, a0, 0x0, csrr a0, misa; srl a0, a0, 30)
+#endif
# Check that mhartid reports 0
TEST_CASE(3, a0, 0x0, csrr a0, mhartid)