]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - avr/debug.c
Get common_base from cpm3.sys file. Update default environment (BOOTCMD)
[z180-stamp.git] / avr / debug.c
index e29a0858b91dd41004fe9f7aabd8aae123c5773e..384a5ad9fab1ff32c5eb9b3fdb7477ca09874b7a 100644 (file)
@@ -1,9 +1,10 @@
 /*
  * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
  *
- * SPDX-License-Identifier:    GPL-2.0+
+ * SPDX-License-Identifier:    GPL-2.0
  */
 
+#include "debug.h"
 #include "common.h"
 #include <stdlib.h>
 #include <string.h>
@@ -13,7 +14,6 @@
 #include "command.h"
 #include "cli_readline.h"
 #include "print-utils.h"
-#include "debug.h"
 
 /*
  * Debugging
@@ -170,7 +170,7 @@ mod_mem_avr(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const arg
                data = *addr;
                printf_P(PSTR("%04x: %02x"), addr, data);
 
-               nbytes = cli_readline(PSTR(" ? "));
+               nbytes = cli_readline(PSTR(" ? "), 0);
                if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
                        /* <CR> pressed as only input, don't modify current
                         * location and move to next. "-" pressed will go back.