From 1922a20cdd86ad4df040735352417d89c78e0c7f Mon Sep 17 00:00:00 2001 From: dingusdev Date: Tue, 5 Oct 2021 17:42:55 -0700 Subject: [PATCH] Partial revert for exception handling This will be for a future update regarding 601 instructions --- cpu/ppc/ppcopcodes.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cpu/ppc/ppcopcodes.cpp b/cpu/ppc/ppcopcodes.cpp index 39d611f..1a597eb 100644 --- a/cpu/ppc/ppcopcodes.cpp +++ b/cpu/ppc/ppcopcodes.cpp @@ -2151,9 +2151,6 @@ void dppc_interpreter::ppc_tlbia() { num_supervisor_instrs++; #endif /* placeholder */ - if (ppc_state.spr[SPR::PVR] == PPC_VER::MPC601) { - ppc_exception_handler(Except_Type::EXC_PROGRAM, 0x0); - } } void dppc_interpreter::ppc_tlbld() { @@ -2175,7 +2172,4 @@ void dppc_interpreter::ppc_tlbsync() { num_supervisor_instrs++; #endif /* placeholder */ - if (ppc_state.spr[SPR::PVR] == PPC_VER::MPC601) { - ppc_exception_handler(Except_Type::EXC_PROGRAM, 0x0); - } }