fix mapper 223
This commit is contained in:
parent
d612719a79
commit
65b3ce30a5
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue