summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2018-05-02 19:09:33 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2018-05-02 19:09:33 +0200
commit7d3b4eec899641e7e99c965ab75194a3df90f94b (patch)
tree00fbc94fa2511e344e529aa1cd1e846cbd37bd48 /src/emu
parentb10c84cd895936f639b23c23bc7b1fb1ba3607ec (diff)
debughlp.cpp: replaced references to 'decrypted opcodes' with 'opcodes', as suggested (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/debug/debughlp.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp
index f30a8ed015b..058af8904c2 100644
--- a/src/emu/debug/debughlp.cpp
+++ b/src/emu/debug/debughlp.cpp
@@ -114,7 +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"
+ " dumpo <filename>,<address>,<length>[,<size>[,<ascii>[,<CPU>]]] -- dump 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"
@@ -606,10 +606,10 @@ static const help_item static_help_list[] =
"\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. "
+ "'dumpi' will dump I/O space memory and 'dumpo' will dump 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, "