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

fixed curly brackets for single line scopes

This commit is contained in:
IrgendwerA8 2017-03-18 22:52:13 +01:00
parent ad003e5991
commit e14e13abf4

View File

@ -214,8 +214,7 @@ int PrintCycles;
Cycles = 5; \
ZPAddr = MemReadByte (Regs.PC+1); \
Addr = MemReadZPWord (ZPAddr); \
if (PAGE_CROSS (Addr, Regs.YR)) \
{ \
if (PAGE_CROSS (Addr, Regs.YR)) { \
++Cycles; \
} \
Addr += Regs.YR; \
@ -259,8 +258,7 @@ int PrintCycles;
} \
TEST_CF (Regs.AC); \
SET_OF ((res < -128) || (res > 127)); \
if (CPU != CPU_6502) \
{ \
if (CPU != CPU_6502) { \
++Cycles; \
} \
} else { \
@ -342,8 +340,7 @@ int PrintCycles;
TEST_SF (res); \
SET_CF (res <= 0xFF); \
SET_OF (((old^rhs) & (old^res) & 0x80)); \
if (CPU != CPU_6502) \
{ \
if (CPU != CPU_6502) { \
++Cycles; \
} \
} else { \