From 8d4539a844ca993f625460b9ce66348ebc965cdf Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Tue, 21 Nov 2017 17:58:19 -0600 Subject: [PATCH] Increase the number of opcodes executed on the SA1 to 5 per S-CPU opcode. --- sa1cpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sa1cpu.cpp b/sa1cpu.cpp index 42c1116c..adaa58a2 100644 --- a/sa1cpu.cpp +++ b/sa1cpu.cpp @@ -312,7 +312,7 @@ void S9xSA1MainLoop (void) } } - for (int i = 0; i < 3 && !(Memory.FillRAM[0x2200] & 0x60); i++) + for (int i = 0; i < 5 && !(Memory.FillRAM[0x2200] & 0x60); i++) { #ifdef DEBUGGER if (SA1.Flags & TRACE_FLAG)