summaryrefslogtreecommitdiff
path: root/src/target/armv4_5.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2010-01-07 16:41:42 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2010-01-07 16:41:42 -0800
commit12c143d5948355b3b54c9c0decc779177b22d5d9 (patch)
treecad536e79441c8b49dc9e3f3841abaa66db49e80 /src/target/armv4_5.c
parent82c0fb527783a56f7cf82e21b85546b425378b00 (diff)
downloadopenocd+libswd-12c143d5948355b3b54c9c0decc779177b22d5d9.tar.gz
openocd+libswd-12c143d5948355b3b54c9c0decc779177b22d5d9.tar.bz2
openocd+libswd-12c143d5948355b3b54c9c0decc779177b22d5d9.tar.xz
openocd+libswd-12c143d5948355b3b54c9c0decc779177b22d5d9.zip
misc ARM help/usage updates
Usage syntax messages have the same EBNF as the User's Guide; there should be no angle brackets in either place. Uupdate some helptext to be more accurate. Don't use "&function"; functions are like arrays, their address is their name. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/armv4_5.c')
-rw-r--r--src/target/armv4_5.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/target/armv4_5.c b/src/target/armv4_5.c
index 1c4923b9..c7b73676 100644
--- a/src/target/armv4_5.c
+++ b/src/target/armv4_5.c
@@ -928,22 +928,22 @@ static int jim_mcrmrc(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
static const struct command_registration arm_exec_command_handlers[] = {
{
.name = "reg",
- .handler = &handle_armv4_5_reg_command,
+ .handler = handle_armv4_5_reg_command,
.mode = COMMAND_EXEC,
.help = "display ARM core registers",
},
{
.name = "core_state",
- .handler = &handle_armv4_5_core_state_command,
+ .handler = handle_armv4_5_core_state_command,
.mode = COMMAND_EXEC,
- .usage = "<arm | thumb>",
+ .usage = "['arm'|'thumb']",
.help = "display/change ARM core state",
},
{
.name = "disassemble",
- .handler = &handle_armv4_5_disassemble_command,
+ .handler = handle_armv4_5_disassemble_command,
.mode = COMMAND_EXEC,
- .usage = "<address> [<count> ['thumb']]",
+ .usage = "address [count ['thumb']]",
.help = "disassemble instructions ",
},
{