6502X: remove a comment (this is indeed a dummy fetch)

This commit is contained in:
SaxxonPike 2019-07-13 11:38:03 -05:00
parent d62f2ac3fe
commit bf2cba0e23
1 changed files with 1 additions and 1 deletions

View File

@ -1852,7 +1852,7 @@ namespace BizHawk.Emulation.Cores.Components.M6502
rdy_freeze = !RDY; rdy_freeze = !RDY;
if (RDY) if (RDY)
{ {
_link.ReadMemory(opcode2); //dummy? _link.DummyReadMemory(opcode2);
alu_temp = (opcode2 + X) & 0xFF; alu_temp = (opcode2 + X) & 0xFF;
} }