1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-20 07:28:56 +00:00

Comment out unused cycles variable

This commit is contained in:
Peter Evans 2018-01-01 17:12:25 -06:00
parent 78aab1bd13
commit 8f04deb642

View File

@ -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