Add files via upload
This commit is contained in:
parent
6ec4451c95
commit
1c9d814e15
|
@ -534,7 +534,11 @@ namespace BizHawk.Emulation.Cores.Components.M6502
|
|||
|
||||
void FetchDummy()
|
||||
{
|
||||
DummyReadMemory(PC);
|
||||
rdy_freeze = !RDY;
|
||||
if (RDY)
|
||||
{
|
||||
DummyReadMemory(PC);
|
||||
}
|
||||
}
|
||||
|
||||
public void Execute(int cycles)
|
||||
|
@ -2109,13 +2113,13 @@ namespace BizHawk.Emulation.Cores.Components.M6502
|
|||
}
|
||||
void IncPC()
|
||||
{
|
||||
rdy_freeze = !RDY;
|
||||
if (RDY)
|
||||
{
|
||||
ReadMemory(PC);
|
||||
PC++;
|
||||
}
|
||||
}
|
||||
rdy_freeze = !RDY;
|
||||
if (RDY)
|
||||
{
|
||||
ReadMemory(PC);
|
||||
PC++;
|
||||
}
|
||||
}
|
||||
void ZP_RMW_Stage3()
|
||||
{
|
||||
rdy_freeze = !RDY;
|
||||
|
|
Loading…
Reference in New Issue