6809: remove unnecessary step on continue

Change-Id: I6d446db172028a496f571dd01a29c461c70eb09b
This commit is contained in:
David Banks 2019-11-04 12:25:15 +00:00
parent c3bb8d5b91
commit 65648aba2b

View File

@ -1323,11 +1323,6 @@ void doCmdContinue(char *params) {
int reset = 0;
sscanf(params, "%d", &reset);
#if defined(CPU_6809)
// Step the 6809, otherwise the breakpoint happends again immediately
hwCmd(CMD_STEP, 0);
#endif
// Disable single stepping
setSingle(0);