From 9dad9ea38b1a729915b0a353c6c3ae980d7cc22e Mon Sep 17 00:00:00 2001 From: dingusdev <52434309+dingusdev@users.noreply.github.com> Date: Tue, 20 Feb 2024 18:22:55 -0700 Subject: [PATCH] Revert 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 9a29e9f..5e7a588 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; - mmu_exception_handler(Except_Type::EXC_ALIGNMENT, 0x0); + ppc_exception_handler(Except_Type::EXC_ALIGNMENT, 0x0); }