diff options
author | Anthony Towns <aj@erisian.com.au> | 2011-02-27 11:11:12 +1000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-03-07 00:01:46 -0800 |
commit | 8cdf4fb051c22b35c251d90bc288551f7c2898bf (patch) | |
tree | a3b39a462dad7f9042ff6b34bdc9ff5e0fea0dec /src/ao_dbg.c | |
parent | 2cfe205de4242398e69c9e7c613af0d2a7094686 (diff) |
src/ao_cmd: Shave off bytes from doc strings
Switch to using { func, "X args\0Desc" } to specify command, saving
a char field by looking at help[0] instead, and reduce help length by
doing alignment with printf instead of hardcoded spaces.
Diffstat (limited to 'src/ao_dbg.c')
-rw-r--r-- | src/ao_dbg.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ao_dbg.c b/src/ao_dbg.c index 0d9ec8c0..49371560 100644 --- a/src/ao_dbg.c +++ b/src/ao_dbg.c @@ -348,13 +348,13 @@ debug_output(void) } __code struct ao_cmds ao_dbg_cmds[7] = { - { '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 }, + { 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" }, + { 0, NULL }, }; void |