summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debughlp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debughlp.cpp')
-rw-r--r--src/emu/debug/debughlp.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp
index f131df0d017..f30a8ed015b 100644
--- a/src/emu/debug/debughlp.cpp
+++ b/src/emu/debug/debughlp.cpp
@@ -114,6 +114,7 @@ static const help_item static_help_list[] =
" dump <filename>,<address>,<length>[,<size>[,<ascii>[,<CPU>]]] -- dump program memory as text\n"
" dumpd <filename>,<address>,<length>[,<size>[,<ascii>[,<CPU>]]] -- dump data memory as text\n"
" dumpi <filename>,<address>,<length>[,<size>[,<ascii>[,<CPU>]]] -- dump I/O memory as text\n"
+ " dumpo <filename>,<address>,<length>[,<size>[,<ascii>[,<CPU>]]] -- dump decrypted opcodes memory as text\n"
" 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"
@@ -603,16 +604,16 @@ static const help_item static_help_list[] =
"\n"
" dump[{d|i}] <filename>,<address>,<length>[,<size>[,<ascii>[,<CPU>]]]\n"
"\n"
- "The dump/dumpd/dumpi commands dump memory to the text file specified in the <filename> "
- "parameter. 'dump' will dump program space memory, while 'dumpd' will dump data space memory "
- "and 'dumpi' will dump I/O space memory. <address> indicates the address of the start of dumping, "
- "and <length> indicates how much memory to dump. The range <address> through <address>+<length>-1 "
- "inclusive will be output to the file. By default, the data will be output in byte format, unless "
- "the underlying address space is word/dword/qword-only. You can override this by specifying the "
- "<size> parameter, which can be used to group the data in 1, 2, 4 or 8-byte chunks. The optional "
- "<ascii> parameter can be used to enable (1) or disable (0) the output of ASCII characters to the "
- "right of each line; by default, this is enabled. Finally, you can dump memory from another CPU "
- "by specifying the <CPU> parameter.\n"
+ "The dump/dumpd/dumpi/dumpo commands dump memory to the text file specified in the <filename> "
+ "parameter. 'dump' will dump program space memory, while 'dumpd' will dump data space memory, "
+ "'dumpi' will dump I/O space memory and 'dumpo' will dump decrypted opcodes memory. <address> "
+ "indicates the address of the start of dumping, and <length> indicates how much memory to dump. "
+ "The range <address> through <address>+<length>-1 inclusive will be output to the file. By default, "
+ "the data will be output in byte format, unless the underlying address space is word/dword/qword-only. "
+ "You can override this by specifying the <size> parameter, which can be used to group the data in "
+ "1, 2, 4 or 8-byte chunks. The optional <ascii> parameter can be used to enable (1) or disable (0) "
+ "the output of ASCII characters to the right of each line; by default, this is enabled. Finally, "
+ "you can dump memory from another CPU by specifying the <CPU> parameter.\n"
"\n"
"Examples:\n"
"\n"