Add files via upload

This commit is contained in:
alyosha-tas 2016-06-24 15:02:50 -04:00 committed by GitHub
parent 6ec4451c95
commit 1c9d814e15
1 changed files with 12 additions and 8 deletions

View File

@ -534,7 +534,11 @@ namespace BizHawk.Emulation.Cores.Components.M6502
void FetchDummy() void FetchDummy()
{ {
DummyReadMemory(PC); rdy_freeze = !RDY;
if (RDY)
{
DummyReadMemory(PC);
}
} }
public void Execute(int cycles) public void Execute(int cycles)
@ -2109,13 +2113,13 @@ namespace BizHawk.Emulation.Cores.Components.M6502
} }
void IncPC() void IncPC()
{ {
rdy_freeze = !RDY; rdy_freeze = !RDY;
if (RDY) if (RDY)
{ {
ReadMemory(PC); ReadMemory(PC);
PC++; PC++;
} }
} }
void ZP_RMW_Stage3() void ZP_RMW_Stage3()
{ {
rdy_freeze = !RDY; rdy_freeze = !RDY;