From 77c197499456a6acd78fd741b3cfa66eb6ad3a9f Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Fri, 31 May 2013 20:47:34 -0700 Subject: Make the n command in the Z80 debugger actually run the next instruction without needing a c command --- blastem.c | 1 + 1 file changed, 1 insertion(+) (limited to 'blastem.c') diff --git a/blastem.c b/blastem.c index 78181d4..034adfe 100644 --- a/blastem.c +++ b/blastem.c @@ -1105,6 +1105,7 @@ z80_context * zdebugger(z80_context * context, uint16_t address) case 'n': //TODO: Handle branch instructions zinsert_breakpoint(context, after, (uint8_t *)zdebugger); + debugging = 0; break; case 'p': strcpy(format, "%s: %d\n"); -- cgit v1.2.3