From b8e5177d00662068722902293e4638ea50489148 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 5 May 2016 12:04:51 -0400 Subject: [PATCH] Fixing PAL timing bug Fixes Little Ninja Bros and Corvette ZR1 Challenge Still needs investigation as seqeunce is 3,3,3,4,3 when it should be 3,3,3,3,4 but need a new test case. Also added a note about DMA timing that needs to be investigated next. --- .../Consoles/Nintendo/NES/NES.Core.cs | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs index 79353ae18f..d320f931f0 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs @@ -284,12 +284,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES //PAL: //0 15 30 45 60 -> 12 27 42 57 -> 9 24 39 54 -> 6 21 36 51 -> 3 18 33 48 -> 0 - //sequence of ppu clocks per cpu clock: 4,3,3,3,3 + //sequence of ppu clocks per cpu clock: 3,3,3,3,4 + //at least it should be, but something is off with that (start up time?) so it is 3,3,3,4,3 for now //NTSC: //sequence of ppu clocks per cpu clock: 3 ByteBuffer cpu_sequence; - static ByteBuffer cpu_sequence_NTSC = new ByteBuffer(new byte[]{3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3}); - static ByteBuffer cpu_sequence_PAL = new ByteBuffer(new byte[]{3,3,3,3,4,3,3,3,3,4,3,3,3,3,4,3,3,3,3,4,3,3,3,3,4,3,3,3,3,4,3,3,3,3,4,3,3,3,3,4}); + static ByteBuffer cpu_sequence_NTSC = new ByteBuffer(new byte[]{3,3,3,3,3}); + static ByteBuffer cpu_sequence_PAL = new ByteBuffer(new byte[]{3,3,3,4,3}); public int cpu_step, cpu_stepcounter, cpu_deadcounter; #if VS2012 @@ -301,7 +302,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES if (cpu_stepcounter == cpu_sequence[cpu_step]) { cpu_step++; - cpu_step &= 31; + if(cpu_step == 5) cpu_step=0; cpu_stepcounter = 0; if (sprdma_countdown > 0) @@ -309,9 +310,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES sprdma_countdown--; if (sprdma_countdown == 0) { - //its weird that this is 514.. normally itd be 512 (and people would say its wrong) or 513 (and people would say its right) - //but 514 passes test 4-irq_and_dma - cpu_deadcounter += 514; + //its weird that this is 514.. normally itd be 512 (and people would say its wrong) or 513 (and people would say its right) + //but 514 passes test 4-irq_and_dma + // according to nesdev wiki, http://wiki.nesdev.com/w/index.php/PPU_OAM this is 513 on even cycles and 514 on odd cycles + // TODO: Implement that + cpu_deadcounter += 514; } }