]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - avr/cmd_boot.c
new debug command: xx test. get freq command from single step branch.
[z180-stamp.git] / avr / cmd_boot.c
index 2159608e4055bcc600a54cdf6670f1bc49051cd2..f4a6183913bc9fe3df7d99ac4512c35a62831845 100644 (file)
@@ -259,18 +259,18 @@ command_ret_t do_go(cmd_tbl_t *cmdtp UNUSED, uint_fast8_t flag UNUSED, int argc,
                return CMD_RET_USAGE;
        addr = eval_arg(argv[1], NULL);
        if (addr >= (1UL<<16)) {
-               printf_P(PSTR("## Startaddress 0x%05lx too high.\n"
+               printf_P(PSTR("Invalid startaddress: 0x%05lx\n"
                        "   (Out of logical address space (0x00000-0x0ffff))\n"),
                        addr);
                return CMD_RET_FAILURE;
        }
 
        if (z80_bus_state() & ZST_RUNNING) {
-               printf_P(PSTR("## CPU already running!\n"));
+               printf_P(PSTR("CPU already running!\n"));
                return CMD_RET_FAILURE;
        }
 
-       printf_P(PSTR("## Starting application at 0x%04lx ...\n"), addr);
+       printf_P(PSTR("Starting application at 0x%04lx ...\n"), addr);
 
        if (addr != 0) {
                uint8_t tmp[3];