X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=ao_cmd.c;h=abab1463e7740ddd4abffffdd890889f0d7dd9b7;hp=7f7865364da5a4a10949a1a5e2d964aeecca1512;hb=75ca1751b7cac2f8074d0713ee96d6ab45b54f19;hpb=8e62747b3692d0ac75b08eaf5c3e4b5d766be6ad diff --git a/ao_cmd.c b/ao_cmd.c index 7f786536..abab1463 100644 --- a/ao_cmd.c +++ b/ao_cmd.c @@ -152,9 +152,8 @@ ao_cmd_hex(void) ao_cmd_status = r; } -#if 0 -static void -decimal(void) +void +ao_cmd_decimal(void) { __xdata uint8_t r = ao_cmd_lex_error; @@ -162,7 +161,7 @@ decimal(void) ao_cmd_white(); for(;;) { if ('0' <= ao_cmd_lex_c && ao_cmd_lex_c <= '9') - ao_cmd_lex_i = (ao_cmd_lex_i * 10 ) | (ao_cmd_lex_c - '0'); + ao_cmd_lex_i = (ao_cmd_lex_i * 10) + (ao_cmd_lex_c - '0'); else break; r = ao_cmd_success; @@ -171,7 +170,6 @@ decimal(void) if (r != ao_cmd_success) ao_cmd_status = r; } -#endif static void eol(void) @@ -216,7 +214,7 @@ echo(void) static const uint8_t help_txt[] = "All numbers are in hex"; -#define NUM_CMDS 10 +#define NUM_CMDS 11 static __code struct ao_cmds *__xdata (ao_cmds[NUM_CMDS]); static __xdata uint8_t ao_ncmds;