nes: fds: implement peekcart (sorta)

This commit is contained in:
goyuken 2012-11-02 23:32:32 +00:00
parent 944c8e412f
commit 48bb76820e
1 changed files with 8 additions and 0 deletions

View File

@ -308,6 +308,14 @@ namespace BizHawk.Emulation.Consoles.Nintendo
return ret;
}
public override byte PeekCart(int addr)
{
if (addr >= 0x6000)
return base.PeekCart(addr);
else
return 0; // lazy
}
public override void ClockCPU()
{
if ((timerreg & 2) != 0 && timervalue > 0)