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

fixed scrambled semicolon

This commit is contained in:
IrgendwerA8 2017-03-18 16:54:00 +01:00
parent 360372420b
commit 4ba34f2a69

View File

@ -865,10 +865,10 @@ static void OPC_65SC02_3C (void)
unsigned Addr;
unsigned char Val;
Cycles = 4;
Addr = MemReadByte (Regs.PC+1)
Addr = MemReadByte (Regs.PC+1);
if (PAGE_CROSS (Addr, Regs.XR))
++Cycles;
Val = MemReadByte (Addr + Regs.XR;);
Val = MemReadByte (Addr + Regs.XR);
SET_SF (Val & 0x80);
SET_OF (Val & 0x40);
SET_ZF ((Val & Regs.AC) == 0);