diff --git a/src/ca65/instr.c b/src/ca65/instr.c index 9941517f3..4f818b047 100644 --- a/src/ca65/instr.c +++ b/src/ca65/instr.c @@ -2251,7 +2251,7 @@ static void Put45GS02_Q (const InsDesc* Ins) { EffAddr A; - if (EvalEA(Ins, &A)) { + if (EvalEA (Ins, &A)) { Emit0 (0x42); Emit0 (0x42); if ((A.AddrModeBit == AM65_DIR_IND_LONG) || diff --git a/src/da65/main.c b/src/da65/main.c index cf31c0baa..545cc657b 100644 --- a/src/da65/main.c +++ b/src/da65/main.c @@ -369,7 +369,7 @@ static unsigned HandleChangedLength(const OpcDesc* D, unsigned PC) { if (D->Flags & flSizeChanges) { if (CPU == CPU_45GS02) { - if ((D->Handler == OH_Implicit_42_45GS02)) { + if (D->Handler == OH_Implicit_42_45GS02) { if (GetCodeByte (PC+1) == 0x42) { /* NEG:NEG prefix (0x42 0x42) */ unsigned opc = GetCodeByte (PC+2); @@ -386,7 +386,7 @@ static unsigned HandleChangedLength(const OpcDesc* D, unsigned PC) } } } - } else if ((D->Handler == OH_Implicit_ea_45GS02)) { + } else if (D->Handler == OH_Implicit_ea_45GS02) { /* NOP prefix (0xea) */ if ((GetCodeByte (PC+1) & 0x1f) == 0x12) { PC += 2;