1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

65C02 JMP (ind,x) opcode 7C

This commit is contained in:
prandeamus 2018-01-14 19:42:29 +00:00
parent 009f56afb6
commit 1a95be9c3a

View File

@ -1434,6 +1434,8 @@ static void OPC_65SC02_7C (void)
PC = Regs.PC;
Adr = MemReadWord (PC+1);
Regs.PC = MemReadWord(Adr+Regs.XR);
ParaVirtHooks (&Regs);
}