# HG changeset patch # User Mike Pavone # Date 1370058454 25200 # Node ID c9d2a2371f5edeace64315f21352b066d9df5a85 # Parent f20562f2a57040dbf40c795ecb9cc56fb12b785e Make the n command in the Z80 debugger actually run the next instruction without needing a c command diff -r f20562f2a570 -r c9d2a2371f5e blastem.c --- a/blastem.c Fri May 31 20:46:56 2013 -0700 +++ b/blastem.c Fri May 31 20:47:34 2013 -0700 @@ -1105,6 +1105,7 @@ case 'n': //TODO: Handle branch instructions zinsert_breakpoint(context, after, (uint8_t *)zdebugger); + debugging = 0; break; case 'p': strcpy(format, "%s: %d\n");