From: Keith Packard Date: Tue, 3 Nov 2009 05:47:15 +0000 (-0800) Subject: Remove "d" command X-Git-Tag: debian/0.6+27+gb0d7e3f~24 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=a4137263b69864c524d39c6ff88a0225fd06e79b Remove "d" command --- diff --git a/src/ao_cmd.c b/src/ao_cmd.c index 33619b24..e3f85bc9 100644 --- a/src/ao_cmd.c +++ b/src/ao_cmd.c @@ -178,33 +178,6 @@ eol(void) ao_cmd_lex(); } -static void -dump(void) -{ - __xdata uint16_t c; - __xdata uint8_t * __xdata start, * __xdata end; - - ao_cmd_hex(); - start = (uint8_t __xdata *) ao_cmd_lex_i; - ao_cmd_hex(); - end = (uint8_t __xdata *) ao_cmd_lex_i; - if (ao_cmd_status != ao_cmd_success) - return; - c = 0; - while (start <= end) { - if ((c & 7) == 0) { - if (c) - putchar('\n'); - ao_cmd_put16((uint16_t) start); - } - putchar(' '); - ao_cmd_put8(*start); - ++c; - start++; - } - putchar('\n'); -} - static void echo(void) { @@ -305,7 +278,6 @@ __code struct ao_cmds ao_base_cmds[] = { { '?', help, "? Print this message" }, { 'T', ao_task_info, "T Show task states" }, { 'E', echo, "E <0 off, 1 on> Set command echo mode" }, - { 'd', dump, "d Dump memory" }, { 'v', version, "v Show version" }, { 0, help, NULL }, };