diff options
author | Keith Packard <keithp@keithp.com> | 2009-12-04 23:36:54 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-12-04 23:41:19 -0800 |
commit | c671a3f31f54715284beef5baa4a72ca922e4018 (patch) | |
tree | 2b38738516cf96b66cef381ca3d6d1132f3198b4 /src/ao.h | |
parent | e6d6ad66ce177eb6e49eaa04b1ecc6426f4bbdbf (diff) |
Make ao_cmd_decimal produce both 32 and 16 bit values.
ao_cmd_lex_u32 is produced in addition to ao_cmd_lex_i so that
functions can easily read 32-bit values from the command line.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao.h')
-rw-r--r-- | src/ao.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -330,6 +330,7 @@ enum ao_cmd_status { }; extern __xdata uint16_t ao_cmd_lex_i; +extern __xdata uint32_t ao_cmd_lex_u32; extern __xdata char ao_cmd_lex_c; extern __xdata enum ao_cmd_status ao_cmd_status; |