From fb6745573eb0a063f61417e87807becee03348db Mon Sep 17 00:00:00 2001 From: Sidney Cadot Date: Mon, 16 Dec 2024 16:55:26 +0100 Subject: [PATCH] Fixed whitespace. --- src/sim65/6502.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sim65/6502.c b/src/sim65/6502.c index a424736f3..c114c0c89 100644 --- a/src/sim65/6502.c +++ b/src/sim65/6502.c @@ -556,15 +556,15 @@ static unsigned HaveIRQRequest; /* #imm */ #define ALU_OP_IMM(op) \ unsigned char immediate; \ - MEM_AD_OP_IMM(immediate); \ - Cycles = 2; \ + MEM_AD_OP_IMM(immediate); \ + Cycles = 2; \ op (immediate) /* zp / zp,x / zp,y / abs / abs,x / abs,y / (zp,x) / (zp),y / (zp) */ #define ALU_OP(mode, op) \ unsigned address, operand; \ - Cycles = ALU_CY_##mode; \ - MEM_AD_OP (mode, address, operand); \ + Cycles = ALU_CY_##mode; \ + MEM_AD_OP (mode, address, operand); \ op (operand) /* Store opcode helpers */