From 9f049056727b5517a8fe2364c206179c60f68cb9 Mon Sep 17 00:00:00 2001 From: Jaklyy <102590697+Jaklyy@users.noreply.github.com> Date: Sun, 1 Dec 2024 15:28:46 -0500 Subject: [PATCH] fix mcr --- src/ARMInterpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ARMInterpreter.cpp b/src/ARMInterpreter.cpp index 7b8f93b0..0400c40a 100644 --- a/src/ARMInterpreter.cpp +++ b/src/ARMInterpreter.cpp @@ -293,7 +293,7 @@ void A_MCR(ARM* cpu) return A_UNK(cpu); // TODO: check what kind of exception it really is } - if (cpu->Num==0) cpu->AddCycles_CI(6); // checkme + if (cpu->Num==0) cpu->AddCycles_CI(5); // checkme else /* ARM7 */ cpu->AddCycles_CI(1 + 1); // TODO: checkme }