From dda7ae6288395980188ac88fbfe122da5769ced5 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Wed, 7 Mar 2018 21:24:15 -0600 Subject: [PATCH] When paused for the debugger, output should go to stdout --- src/apple2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apple2.c b/src/apple2.c index 62a151c..4396669 100644 --- a/src/apple2.c +++ b/src/apple2.c @@ -360,7 +360,7 @@ apple2_run_loop(apple2 *mach) mach->selected_drive->locked = true; } - mos6502_dis_opcode(mach->cpu, dlog, mach->cpu->PC); + mos6502_dis_opcode(mach->cpu, stdout, mach->cpu->PC); if (mach->selected_drive) { mach->selected_drive->locked = false;