From da4a82d8cf685c699af462dcb316dc4cbfcbb968 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Fri, 13 Apr 2018 23:35:27 -0500 Subject: [PATCH] The disasm command now always sets disasm = true We should probably just not even offer this as an option in the debugger then. --- tests/vm_debug.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/vm_debug.c b/tests/vm_debug.c index 45b8645..f0793aa 100644 --- a/tests/vm_debug.c +++ b/tests/vm_debug.c @@ -282,8 +282,6 @@ Test(apple2_debug, cmd_disassemble) apple2_debug_cmd_disasm(&args); cr_assert_neq(strlen(buf), 0); cr_assert_eq(mach->disasm, true); - apple2_debug_cmd_disasm(&args); - cr_assert_eq(mach->disasm, false); } Test(apple2_debug, cmd_dblock)