fix mapper 223

This commit is contained in:
alyosha-tas 2016-09-28 20:42:24 -04:00 committed by GitHub
parent d612719a79
commit 65b3ce30a5
1 changed files with 23 additions and 0 deletions

View File

@ -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);
}
}
}