1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-04-05 06:37:42 +00:00

Disable opcode output

This commit is contained in:
Peter Evans 2018-02-05 12:29:00 -06:00
parent 92ee67c8d8
commit a13be6c413

View File

@ -334,11 +334,13 @@ apple2_run_loop(apple2 *mach)
}
while (vm_screen_active(mach->screen)) {
#if 0
mach->drive1->locked = true;
mach->drive2->locked = true;
mos6502_dis_opcode(mach->cpu, stdout, mach->cpu->PC);
mach->drive1->locked = false;
mach->drive2->locked = false;
#endif
mos6502_execute(mach->cpu);