diff options
author | Keith Packard <keithp@keithp.com> | 2011-07-06 15:26:09 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-07-06 15:48:35 -0700 |
commit | 6893752900385ee51cc4cf75e1b672202de7578a (patch) | |
tree | 907c95b67abc0c12a6e9c9aafae328b9aee5c18d /src/ao.h | |
parent | 2ec986f08ce8d4635f4435bb0042b405d93edc40 (diff) |
altos: switch ao_cmd __xdata to __pdata
Saves code space
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao.h')
-rw-r--r-- | src/ao.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -367,10 +367,10 @@ enum ao_cmd_status { ao_cmd_syntax_error = 2, }; -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; +extern __pdata uint16_t ao_cmd_lex_i; +extern __pdata uint32_t ao_cmd_lex_u32; +extern __pdata char ao_cmd_lex_c; +extern __pdata enum ao_cmd_status ao_cmd_status; void ao_cmd_lex(void); |