aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/riscv/virtual_memory.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/riscv/virtual_memory.c b/src/arch/riscv/virtual_memory.c
index 3cc2cc9295..3bee86865d 100644
--- a/src/arch/riscv/virtual_memory.c
+++ b/src/arch/riscv/virtual_memory.c
@@ -32,6 +32,9 @@ static int delegate = 0
| (1 << CAUSE_LOAD_ACCESS)
| (1 << CAUSE_STORE_ACCESS)
| (1 << CAUSE_USER_ECALL)
+ | (1 << CAUSE_FETCH_PAGE_FAULT)
+ | (1 << CAUSE_LOAD_PAGE_FAULT)
+ | (1 << CAUSE_STORE_PAGE_FAULT)
;
void mstatus_init(void)