From e3ab043aeebcc84ed79979347340f6302dfde485 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Tue, 9 Jan 2018 20:58:53 -0600 Subject: [PATCH] We no longer need to pass the opcode here --- src/apple2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apple2.c b/src/apple2.c index 855ddb3..4a11ca3 100644 --- a/src/apple2.c +++ b/src/apple2.c @@ -320,7 +320,7 @@ apple2_run_loop(apple2 *mach) while (vm_screen_active(mach->screen)) { mos6502_dis_opcode(mach->cpu, stdout, mach->cpu->PC); - mos6502_execute(mach->cpu, mos6502_next_byte(mach->cpu)); + mos6502_execute(mach->cpu); vm_screen_refresh(mach->screen); } }