summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debughlp.cpp
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2017-06-25 09:37:31 -0400
committer Nathan Woods <npwoods@mess.org>2017-06-25 09:37:31 -0400
commitdd951ec62f03ab67c9d51b43627c4e033f54f7f8 (patch)
tree420290cc3349fb4c1a073e43a4a40dd835869c24 /src/emu/debug/debughlp.cpp
parent319eb61d0fec64eca6ee72eb824e0531fac552ba (diff)
Made the debugger 'load' length field be optional, C++-ification
Diffstat (limited to 'src/emu/debug/debughlp.cpp')
-rw-r--r--src/emu/debug/debughlp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp
index dd46472abb2..2848f970003 100644
--- a/src/emu/debug/debughlp.cpp
+++ b/src/emu/debug/debughlp.cpp
@@ -116,9 +116,9 @@ static const help_item static_help_list[] =
" save <filename>,<address>,<length>[,<cpu>] -- save binary program memory to the given file\n"
" saved <filename>,<address>,<length>[,<cpu>] -- save binary data memory to the given file\n"
" savei <filename>,<address>,<length>[,<cpu>] -- save binary I/O memory to the given file\n"
- " load <filename>,<address>,<length>[,<cpu>] -- load binary program memory from the given file\n"
- " loadd <filename>,<address>,<length>[,<cpu>] -- load binary data memory from the given file\n"
- " loadi <filename>,<address>,<length>[,<cpu>] -- load binary I/O memory from the given file\n"
+ " load <filename>,<address>[,<length>,<cpu>] -- load binary program memory from the given file\n"
+ " loadd <filename>,<address>[,<length>,<cpu>] -- load binary data memory from the given file\n"
+ " loadi <filename>,<address>[,<length>,<cpu>] -- load binary I/O memory from the given file\n"
" map <address> -- map logical program address to physical address and bank\n"
" mapd <address> -- map logical data address to physical address and bank\n"
" mapi <address> -- map logical I/O address to physical address and bank\n"
@@ -627,7 +627,7 @@ static const help_item static_help_list[] =
{
"load",
"\n"
- " load[{d|i}] <filename>,<address>,<length>[,<cpu>]\n"
+ " load[{d|i}] <filename>,<address>[,<length>,<cpu>]\n"
"\n"
"The load/loadd/loadi commands load raw memory from the binary file specified in the <filename> "
"parameter. 'load' will load program space memory, while 'loadd' will load data space memory "