mirror of https://github.com/stella-emu/stella.git
reflected last doc changes in debugger help
This commit is contained in:
parent
591506cc93
commit
88500b46ff
|
@ -2370,7 +2370,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
|
||||||
|
|
||||||
{
|
{
|
||||||
"d",
|
"d",
|
||||||
"Carry Flag: set (0 or 1), or toggle (no arg)",
|
"Decimal Flag: set (0 or 1), or toggle (no arg)",
|
||||||
"Example: d, d 0, d 1",
|
"Example: d, d 0, d 1",
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
|
@ -2471,7 +2471,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
|
||||||
|
|
||||||
{
|
{
|
||||||
"dump",
|
"dump",
|
||||||
"Dump data at address <xx> [to yy] [1..7]",
|
"Dump data at address <xx> [to yy] [0-7] (dump to file options)",
|
||||||
"Example:\n"
|
"Example:\n"
|
||||||
" dump f000 - dumps 128 bytes @ f000\n"
|
" dump f000 - dumps 128 bytes @ f000\n"
|
||||||
" dump f000 f0ff - dumps all bytes from f000 to f0ff\n"
|
" dump f000 f0ff - dumps all bytes from f000 to f0ff\n"
|
||||||
|
@ -2796,7 +2796,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
|
||||||
|
|
||||||
{
|
{
|
||||||
"rewind",
|
"rewind",
|
||||||
"Rewind state to last [xx] steps/traces/scanlines/frames...",
|
"Rewind state by one or [xx] steps/traces/scanlines/frames...",
|
||||||
"Example: rewind, rewind 5",
|
"Example: rewind, rewind 5",
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
|
@ -3109,7 +3109,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
|
||||||
|
|
||||||
{
|
{
|
||||||
"unwind",
|
"unwind",
|
||||||
"Unwind state to next [xx] steps/traces/scanlines/frames...",
|
"Unwind state by one or [xx] steps/traces/scanlines/frames...",
|
||||||
"Example: unwind, unwind 5",
|
"Example: unwind, unwind 5",
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
|
|
Loading…
Reference in New Issue