updated doc for 'dump' command

This commit is contained in:
thrust26 2017-12-17 17:59:25 +01:00
parent b76566e864
commit 7fcbb8f401
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -2470,11 +2470,11 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{
"dump",
"Dump data at address <xx> [to yy] [0-7] (dump to file options)",
"Dump data at address <xx> [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 },