mirror of
https://github.com/libretro/stella2023.git
synced 2024-12-04 15:36:30 +00:00
updated doc for 'dump' command
This commit is contained in:
parent
b76566e864
commit
7fcbb8f401
@ -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)
|
||||
|
@ -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 },
|
||||
|
Loading…
Reference in New Issue
Block a user