Fixed whitespace.

This commit is contained in:
Sidney Cadot
2024-12-16 16:55:26 +01:00
parent dfc88d5796
commit fb6745573e

View File

@@ -556,15 +556,15 @@ static unsigned HaveIRQRequest;
/* #imm */ /* #imm */
#define ALU_OP_IMM(op) \ #define ALU_OP_IMM(op) \
unsigned char immediate; \ unsigned char immediate; \
MEM_AD_OP_IMM(immediate); \ MEM_AD_OP_IMM(immediate); \
Cycles = 2; \ Cycles = 2; \
op (immediate) op (immediate)
/* zp / zp,x / zp,y / abs / abs,x / abs,y / (zp,x) / (zp),y / (zp) */ /* zp / zp,x / zp,y / abs / abs,x / abs,y / (zp,x) / (zp),y / (zp) */
#define ALU_OP(mode, op) \ #define ALU_OP(mode, op) \
unsigned address, operand; \ unsigned address, operand; \
Cycles = ALU_CY_##mode; \ Cycles = ALU_CY_##mode; \
MEM_AD_OP (mode, address, operand); \ MEM_AD_OP (mode, address, operand); \
op (operand) op (operand)
/* Store opcode helpers */ /* Store opcode helpers */