mirror of https://github.com/stella-emu/stella.git
minor doc fixes
This commit is contained in:
parent
178c5b4eaf
commit
16bc644b00
|
@ -638,9 +638,9 @@ Type "help 'cmd'" to see extended information about the given command.</p>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
a - Set Accumulator to <value>
|
a - Set Accumulator to <value>
|
||||||
base - Set default base to <base>
|
base - Set default number base to <base> (bin, dec, hex)
|
||||||
break - Set/clear breakpoint at <address>
|
break - Set/clear breakpoint at <address>
|
||||||
breakif - Set breakpoint on <condition>
|
breakif - Set/clear breakpoint on <condition>
|
||||||
c - Carry Flag: set (0 or 1), or toggle (no arg)
|
c - Carry Flag: set (0 or 1), or toggle (no arg)
|
||||||
cheat - Use a cheat code (see manual for cheat types)
|
cheat - Use a cheat code (see manual for cheat types)
|
||||||
clearbreaks - Clear all breakpoints
|
clearbreaks - Clear all breakpoints
|
||||||
|
@ -651,7 +651,7 @@ clearsavestateifs - Clear all savestate points
|
||||||
cls - Clear prompt area of text
|
cls - Clear prompt area of text
|
||||||
code - Mark 'CODE' range in disassembly
|
code - Mark 'CODE' range in disassembly
|
||||||
colortest - Show value xx as TIA color
|
colortest - Show value xx as TIA color
|
||||||
d - Carry Flag: set (0 or 1), or toggle (no arg)
|
d - Decimal Mode Flag: set (0 or 1), or toggle (no arg)
|
||||||
data - Mark 'DATA' range in disassembly
|
data - Mark 'DATA' range in disassembly
|
||||||
debugcolors - Show Fixed Debug Colors information
|
debugcolors - Show Fixed Debug Colors information
|
||||||
define - Define label xx for address yy
|
define - Define label xx for address yy
|
||||||
|
@ -715,7 +715,7 @@ clearsavestateifs - Clear all savestate points
|
||||||
trace - Single step CPU over subroutines [with count xx]
|
trace - Single step CPU over subroutines [with count xx]
|
||||||
trap - Trap read/write access to address(es) xx [yy]
|
trap - Trap read/write access to address(es) xx [yy]
|
||||||
trapif - On <condition> trap R/W access to address(es) xx [yy]
|
trapif - On <condition> trap R/W access to address(es) xx [yy]
|
||||||
trapread - On Trap read access to address(es) xx [yy]
|
trapread - Trap read access to address(es) xx [yy]
|
||||||
trapreadif - On <condition> trap read access to address(es) xx [yy]
|
trapreadif - On <condition> trap read access to address(es) xx [yy]
|
||||||
trapwrite - Trap write access to address(es) xx [yy]
|
trapwrite - Trap write access to address(es) xx [yy]
|
||||||
trapwriteif - On <condition> trap write access to address(es) xx [yy]
|
trapwriteif - On <condition> trap write access to address(es) xx [yy]
|
||||||
|
|
|
@ -704,7 +704,7 @@ void DebuggerParser::executeBase()
|
||||||
else if(args[0] == 16 || argStrings[0] == "hex")
|
else if(args[0] == 16 || argStrings[0] == "hex")
|
||||||
Base::setFormat(Base::F_16);
|
Base::setFormat(Base::F_16);
|
||||||
|
|
||||||
commandResult << "default base set to ";
|
commandResult << "default number base set to ";
|
||||||
switch(Base::format()) {
|
switch(Base::format()) {
|
||||||
case Base::F_2:
|
case Base::F_2:
|
||||||
commandResult << "#2/bin";
|
commandResult << "#2/bin";
|
||||||
|
@ -2239,8 +2239,8 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
|
||||||
|
|
||||||
{
|
{
|
||||||
"base",
|
"base",
|
||||||
"Set default base to <base>",
|
"Set default number base to <base>",
|
||||||
"Base is hex, dec, or bin\nExample: base hex",
|
"Base is #2, #10, #16, bin, dec or hex\nExample: base hex",
|
||||||
true,
|
true,
|
||||||
true,
|
true,
|
||||||
{ kARG_BASE_SPCL, kARG_END_ARGS },
|
{ kARG_BASE_SPCL, kARG_END_ARGS },
|
||||||
|
|
Loading…
Reference in New Issue