From 8f04deb6421b248aad23f3defc835ad11e7501c7 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Mon, 1 Jan 2018 17:12:25 -0600 Subject: [PATCH] Comment out unused cycles variable --- src/mos6502.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mos6502.c b/src/mos6502.c index 13c3a31..0ccc102 100644 --- a/src/mos6502.c +++ b/src/mos6502.c @@ -352,7 +352,7 @@ void mos6502_execute(mos6502 *cpu, vm_8bit opcode) { vm_8bit operand; - int cycles; + //int cycles; mos6502_address_resolver resolver; mos6502_instruction_handler handler; @@ -380,7 +380,7 @@ mos6502_execute(mos6502 *cpu, vm_8bit opcode) // with the idea that certain instructions -- in certain address // modes -- were more expensive than others, and you want those // programs to feel faster or slower in relation to that. - cycles = mos6502_cycles(cpu, opcode); + //cycles = mos6502_cycles(cpu, opcode); // FIXME: actually emulate the cycles