diff options
author | Keith Packard <keithp@keithp.com> | 2009-04-21 01:17:03 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-04-21 01:17:03 -0700 |
commit | d1887ded41a5bfec8e10e9fd736fa9444b9b6222 (patch) | |
tree | 936c2e251c195d80e13a0754931ba188fbf7e5ad /ao_dbg.c | |
parent | 43c8f7012102cdb591ace899420c10e4a78385ad (diff) |
Fix up fancy dbg stuff. Add teleterra initial bits.
The dbg stuff needed a bit of help to actually walk the tables; it appears
that complex expressions confuse sdcc.
This also adds primitive teleterra bits, but no UI, etc.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao_dbg.c')
-rw-r--r-- | ao_dbg.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -330,12 +330,12 @@ debug_output(void) } __code struct ao_cmds ao_dbg_cmds[7] = { - { 'D', debug_enable, "D Enable debug mode\n" }, - { 'G', debug_get, "G <count> Get data from debug port\n" }, - { 'I', debug_input, "I <count> <addr> Input <count> bytes to target at <addr>\n" }, - { 'O', debug_output, "O <count> <addr> Output <count> bytes to target at <addr>\n" }, - { 'P', debug_put, "P <byte> ... Put data to debug port\n" }, - { 'R', debug_reset, "R Reset target\n" }, + { 'D', debug_enable, "D Enable debug mode" }, + { 'G', debug_get, "G <count> Get data from debug port" }, + { 'I', debug_input, "I <count> <addr> Input <count> bytes to target at <addr>" }, + { 'O', debug_output, "O <count> <addr> Output <count> bytes to target at <addr>" }, + { 'P', debug_put, "P <byte> ... Put data to debug port" }, + { 'R', debug_reset, "R Reset target" }, { 0, debug_reset, 0 }, }; |