mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
fixed curly brackets for single line scopes
This commit is contained in:
parent
ad003e5991
commit
e14e13abf4
@ -214,8 +214,7 @@ int PrintCycles;
|
|||||||
Cycles = 5; \
|
Cycles = 5; \
|
||||||
ZPAddr = MemReadByte (Regs.PC+1); \
|
ZPAddr = MemReadByte (Regs.PC+1); \
|
||||||
Addr = MemReadZPWord (ZPAddr); \
|
Addr = MemReadZPWord (ZPAddr); \
|
||||||
if (PAGE_CROSS (Addr, Regs.YR)) \
|
if (PAGE_CROSS (Addr, Regs.YR)) { \
|
||||||
{ \
|
|
||||||
++Cycles; \
|
++Cycles; \
|
||||||
} \
|
} \
|
||||||
Addr += Regs.YR; \
|
Addr += Regs.YR; \
|
||||||
@ -259,8 +258,7 @@ int PrintCycles;
|
|||||||
} \
|
} \
|
||||||
TEST_CF (Regs.AC); \
|
TEST_CF (Regs.AC); \
|
||||||
SET_OF ((res < -128) || (res > 127)); \
|
SET_OF ((res < -128) || (res > 127)); \
|
||||||
if (CPU != CPU_6502) \
|
if (CPU != CPU_6502) { \
|
||||||
{ \
|
|
||||||
++Cycles; \
|
++Cycles; \
|
||||||
} \
|
} \
|
||||||
} else { \
|
} else { \
|
||||||
@ -342,8 +340,7 @@ int PrintCycles;
|
|||||||
TEST_SF (res); \
|
TEST_SF (res); \
|
||||||
SET_CF (res <= 0xFF); \
|
SET_CF (res <= 0xFF); \
|
||||||
SET_OF (((old^rhs) & (old^res) & 0x80)); \
|
SET_OF (((old^rhs) & (old^res) & 0x80)); \
|
||||||
if (CPU != CPU_6502) \
|
if (CPU != CPU_6502) { \
|
||||||
{ \
|
|
||||||
++Cycles; \
|
++Cycles; \
|
||||||
} \
|
} \
|
||||||
} else { \
|
} else { \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user