diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-31 09:49:02 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-31 09:49:02 -0700 |
commit | 3fc254ce2e330f129ab0a8180946185b2f1f7927 (patch) | |
tree | 40c82a6814786a82a926932e3729d423298455cb | |
parent | 74c50fcc525e157d2330f1c7db549d5c20fdfe7c (diff) |
Fix accidental fallthrough on com debugger command
-rw-r--r-- | debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -588,6 +588,7 @@ int run_debugger_command(m68k_context *context, char *input_buf, m68kinst inst, (*target)->commands = commands; } else { } + break; case 'b': if (input_buf[1] == 't') { uint32_t stack = context->aregs[7]; |