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()
|
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;
|
||||||
|
|
Loading…
Reference in New Issue