diff --git a/core/hw/arm7/arm7.cpp b/core/hw/arm7/arm7.cpp index 531f48666..8c1c0f212 100644 --- a/core/hw/arm7/arm7.cpp +++ b/core/hw/arm7/arm7.cpp @@ -209,8 +209,9 @@ static void CPUSwitchMode(int mode, bool saveState) reg[RN_SPSR].I = reg[SPSR_UND].I; break; default: + // An illegal mode causes the processor to enter an unrecoverable state ERROR_LOG(AICA_ARM, "Unsupported ARM mode %02x", mode); - die("Arm error.."); + Arm7Enabled = false; break; } armMode = mode;