From 61b29f6fabd6a8a8236b712739ba24caf0db789f Mon Sep 17 00:00:00 2001 From: joevt Date: Mon, 19 Feb 2024 21:15:50 -0800 Subject: [PATCH] ppcexceptions: Memory exceptions use mmu handler. --- cpu/ppc/ppcexceptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/ppc/ppcexceptions.cpp b/cpu/ppc/ppcexceptions.cpp index 5e7a588..9a29e9f 100644 --- a/cpu/ppc/ppcexceptions.cpp +++ b/cpu/ppc/ppcexceptions.cpp @@ -310,5 +310,5 @@ unexpected_instruction: ppc_state.spr[SPR::DSISR] = dsisr; ppc_state.spr[SPR::DAR] = ea; - ppc_exception_handler(Except_Type::EXC_ALIGNMENT, 0x0); + mmu_exception_handler(Except_Type::EXC_ALIGNMENT, 0x0); }