From 74e8a30a4c127c16ffc1d01aa4f1dc2b3d215a34 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Fri, 9 Mar 2018 16:46:04 -0600 Subject: [PATCH] Disassemble flag now works as intended --- src/apple2.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/apple2.c b/src/apple2.c index 4396669..a0ee0f2 100644 --- a/src/apple2.c +++ b/src/apple2.c @@ -258,10 +258,6 @@ apple2_boot(apple2 *mach) vm_segment_set16(mach->main, APPLE2_RESET_VECTOR, APPLE2_APPLESOFT_MAIN); - if (option_flag(OPTION_DISASSEMBLE)) { - mos6502_dis_scan(mach->cpu, stdout, 0, mach->main->size); - } - // Run the reset routine to get the machine ready to go. apple2_reset(mach); @@ -341,14 +337,13 @@ apple2_free(apple2 *mach) void apple2_run_loop(apple2 *mach) { - FILE *dlog; + FILE *dlog = NULL; if (option_flag(OPTION_DISASSEMBLE)) { - return; + dlog = (FILE *)vm_di_get(VM_DISASM_LOG); + vm_reflect_disasm(NULL); } - dlog = (FILE *)vm_di_get(VM_DISASM_LOG); - while (vm_screen_active(mach->screen)) { if (vm_debug_broke(mach->cpu->PC)) { mach->paused = true;