diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-05-31 20:47:34 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-05-31 20:47:34 -0700 |
commit | 77c197499456a6acd78fd741b3cfa66eb6ad3a9f (patch) | |
tree | bc1191627b12865d37a6ea91e8d917eb31ee85fb /blastem.c | |
parent | 3e12841754549dccbeb1270b3cfc444bfe773c7b (diff) |
Make the n command in the Z80 debugger actually run the next instruction without needing a c command
Diffstat (limited to 'blastem.c')
-rw-r--r-- | blastem.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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"); |