From d211a6d3c578cadfb15b4b721f966e915c5178eb Mon Sep 17 00:00:00 2001 From: beirich Date: Fri, 18 Mar 2011 04:24:31 +0000 Subject: [PATCH] PCE: Fix timer issue causing Battle Royale to break --- BizHawk.Emulation/CPUs/HuC6280/HuC6280.cs | 9 +++++++++ BizHawk.Emulation/Consoles/PC Engine/Compat.txt | 1 - BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs | 2 +- .../Consoles/PC Engine/MemoryMap.SuperGrafx.cs | 2 +- BizHawk.Emulation/Consoles/PC Engine/MemoryMap.cs | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/BizHawk.Emulation/CPUs/HuC6280/HuC6280.cs b/BizHawk.Emulation/CPUs/HuC6280/HuC6280.cs index 9e5ba27a96..47b54ab6af 100644 --- a/BizHawk.Emulation/CPUs/HuC6280/HuC6280.cs +++ b/BizHawk.Emulation/CPUs/HuC6280/HuC6280.cs @@ -228,6 +228,15 @@ namespace BizHawk.Emulation.CPUs.H6280 TimerEnabled = (value & 1) == 1; } + public byte ReadTimerValue() + { + if (TimerTickCounter + 5 > 1024) + { + return (byte) ((TimerValue - 1) & 0x7F); + } + return TimerValue; + } + // ==== Flags ==== /// Carry Flag diff --git a/BizHawk.Emulation/Consoles/PC Engine/Compat.txt b/BizHawk.Emulation/Consoles/PC Engine/Compat.txt index 0a09259319..54e55f1ceb 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/Compat.txt +++ b/BizHawk.Emulation/Consoles/PC Engine/Compat.txt @@ -11,7 +11,6 @@ General: Air Zonk - Fully playable, doesn't freeze, but some gfx/timing issues Battle Ace - Some gfx glitches -Battle Royale - STILLL Doesnt boot Chase HQ - Press start -"O" sprite gets left on screen. probably timing on SATB DMA Cross Wiber - Minor; Raster on wrong line Davis Cup Tennis - Some timing issue, splash screen is too slow diff --git a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs index d481fcb329..300ba6a1f2 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs +++ b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SF2.cs @@ -23,7 +23,7 @@ if (addr < 0x1FE400) return VDC1.ReadVDC(addr); if (addr < 0x1FE800) { Cpu.PendingCycles--; return VCE.ReadVCE(addr); } if (addr < 0x1FEC00) return IOBuffer; - if (addr < 0x1FF000) { IOBuffer = (byte) (Cpu.TimerValue | (IOBuffer & 0x80)); return IOBuffer; } + if (addr < 0x1FF000) { IOBuffer = (byte) (Cpu.ReadTimerValue() | (IOBuffer & 0x80)); return IOBuffer; } if (addr >= 0x1FF000 && addr < 0x1FF400) { IOBuffer = ReadInput(); return IOBuffer; } if ((addr & ~1) == 0x1FF400) return IOBuffer; diff --git a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SuperGrafx.cs b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SuperGrafx.cs index febcbdeff2..b7ea9380be 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SuperGrafx.cs +++ b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.SuperGrafx.cs @@ -26,7 +26,7 @@ if (addr < 0x1FE800) { Cpu.PendingCycles--; return VCE.ReadVCE(addr); } if (addr < 0x1FEC00) return IOBuffer; - if (addr < 0x1FF000) { IOBuffer = (byte)(Cpu.TimerValue | (IOBuffer & 0x80)); return IOBuffer; } + if (addr < 0x1FF000) { IOBuffer = (byte)(Cpu.ReadTimerValue() | (IOBuffer & 0x80)); return IOBuffer; } if (addr >= 0x1FF000 && addr < 0x1FF400) { IOBuffer = ReadInput(); return IOBuffer; } if ((addr & ~1) == 0x1FF400) return IOBuffer; diff --git a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.cs b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.cs index 654b4a939d..0147f0c65c 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.cs +++ b/BizHawk.Emulation/Consoles/PC Engine/MemoryMap.cs @@ -17,7 +17,7 @@ if (addr < 0x1FE400) return VDC1.ReadVDC(addr); if (addr < 0x1FE800) { Cpu.PendingCycles--; return VCE.ReadVCE(addr); } if (addr < 0x1FEC00) return IOBuffer; - if (addr < 0x1FF000) { IOBuffer = (byte) (Cpu.TimerValue | (IOBuffer & 0x80)); return IOBuffer; } + if (addr < 0x1FF000) { IOBuffer = (byte) (Cpu.ReadTimerValue() | (IOBuffer & 0x80)); return IOBuffer; } if (addr >= 0x1FF000 && addr < 0x1FF400) { IOBuffer = ReadInput(); return IOBuffer; } if ((addr & ~1) == 0x1FF400) return IOBuffer;