diff --git a/docs/debugger.html b/docs/debugger.html
index 88d3eb3f2..4f1d506cc 100644
--- a/docs/debugger.html
+++ b/docs/debugger.html
@@ -915,7 +915,7 @@ clearsavestateifs - Clear all savestate points
deltrap - Delete trap <xx>
delwatch - Delete watch <xx>
disasm - Disassemble address xx [yy lines] (default=PC)
- dump - Dump data at address <xx> [to yy] [0 - 7] (dump to file options)
+ dump - Dump data at address <xx> [to yy] [1: memory; 2: CPU state; 4: input regs]
exec - Execute script file <xx> [prefix]
exitrom - Exit emulator, return to ROM launcher
frame - Advance emulation by <xx> frames (default=1)
diff --git a/src/debugger/DebuggerParser.cxx b/src/debugger/DebuggerParser.cxx
index 9f90d3570..de621faf3 100644
--- a/src/debugger/DebuggerParser.cxx
+++ b/src/debugger/DebuggerParser.cxx
@@ -2470,11 +2470,11 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{
"dump",
- "Dump data at address [to yy] [0-7] (dump to file options)",
+ "Dump data at address [to yy] [1: memory; 2: CPU state; 4: input regs]",
"Example:\n"
" dump f000 - dumps 128 bytes @ f000\n"
" dump f000 f0ff - dumps all bytes from f000 to f0ff\n"
- " dump f000 f0ff 7 - dumps all bytes from f000 to f0ff, CPU and input states into a file",
+ " dump f000 f0ff 7 - dumps all bytes from f000 to f0ff, CPU state and input registers into a file",
true,
false,
{ kARG_WORD, kARG_MULTI_BYTE },