From 51dd0948df5ed53b11cab4e909e19ee7cee363c5 Mon Sep 17 00:00:00 2001 From: Leo C Date: Sat, 8 Sep 2018 20:37:23 +0200 Subject: new debug command: xx test. get freq command from single step branch. --- avr/cmd_boot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'avr/cmd_boot.c') diff --git a/avr/cmd_boot.c b/avr/cmd_boot.c index 2159608..f4a6183 100644 --- a/avr/cmd_boot.c +++ b/avr/cmd_boot.c @@ -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]; -- cgit v1.2.3