From 65b3ce30a5443d23c63a7ce7296c054468f502d3 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 28 Sep 2016 20:42:24 -0400 Subject: [PATCH] fix mapper 223 --- .../NES/Boards/MMC3_family/Mapper223.cs | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper223.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper223.cs index b7ef24f13f..bb4d9e908a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper223.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/Mapper223.cs @@ -16,7 +16,30 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } BaseSetup(); + + mmc3.wram_enable = true; + mmc3.wram_write_protect = true; return true; } + + public override void WriteEXP(int addr, byte value) + { + if (addr>0x1000) + { + WRAM[addr + 0x4000 - (0x5000 - 0x2000)] = value; + } + else + base.WriteEXP(addr, value); + } + + public override byte ReadEXP(int addr) + { + if (addr > 0x1000) + { + return WRAM[addr + 0x4000 - (0x5000 - 0x2000)]; + } + else + return base.ReadEXP(addr); + } } }