From 2e49ae88d37b95c88f1dedd11e215cad7840ef72 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 16 Aug 2015 12:18:44 -0400 Subject: [PATCH] Mapper 132 - change some Nintendulator logic to FCEUX logic, and makes Qi Wang - Chinese Chess (Ch) [p1][!] playable. Couldn't find any other mapper 132 games, so I don't know if this breaks any existing ones --- .../Consoles/Nintendo/NES/Boards/Mapper132.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper132.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper132.cs index 6898abf625..26230c2623 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper132.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper132.cs @@ -44,8 +44,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public override void WriteEXP(int addr, byte value) { - if ((addr & 0x103) == 0x102) + //if ((addr & 0x103) == 0x102) // Nintendulator logic + if (addr >= 0x100 && addr <= 0x103) // FCEUX logic, Fixes Qi Wang - Chinese Chess (Ch) [p1][!] + { reg = (byte)(value & 0x0f); + } } public override byte ReadEXP(int addr)