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

We no longer need to pass the opcode here

This commit is contained in:
Peter Evans 2018-01-09 20:58:53 -06:00
parent 80a7671a19
commit e3ab043aee

View File

@ -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);
}
}