summaryrefslogtreecommitdiff
path: root/src/ao_dbg.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-07-04 18:08:19 -0700
committerKeith Packard <keithp@keithp.com>2011-07-04 18:08:19 -0700
commitb51e5466f7a125db873edd1fa9bd3881d7e98aad (patch)
treed7e03c0729bb398e0a7b8e9603751c0db0385f89 /src/ao_dbg.c
parent9e5e4c1ad82d621ceb7286f72c87eeaf5976f9bf (diff)
altos: Shrink help text
Reduce const space taken by command help text. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_dbg.c')
-rw-r--r--src/ao_dbg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ao_dbg.c b/src/ao_dbg.c
index 49371560..14a123a2 100644
--- a/src/ao_dbg.c
+++ b/src/ao_dbg.c
@@ -348,12 +348,12 @@ debug_output(void)
}
__code struct ao_cmds ao_dbg_cmds[7] = {
- { debug_enable, "D\0Enable debug mode" },
- { debug_get, "G <count>\0Get data from debug port" },
- { debug_input, "I <count> <addr>\0Input <count> bytes to target at <addr>" },
- { debug_output, "O <count> <addr>\0Output <count> bytes to target at <addr>" },
- { debug_put, "P <byte> ...\0Put data to debug port" },
- { debug_reset, "R\0Reset target" },
+ { debug_enable, "D\0Enable debug" },
+ { debug_get, "G <count>\0Get data" },
+ { debug_input, "I <count> <addr>\0Input <count> at <addr>" },
+ { debug_output, "O <count> <addr>\0Output <count> at <addr>" },
+ { debug_put, "P <byte> ...\0Put data" },
+ { debug_reset, "R\0Reset" },
{ 0, NULL },
};