Debugger reset command now does a full system reset.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3082 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2014-11-17 12:47:33 +00:00
parent 086658799d
commit d5a470cbcc
3 changed files with 5 additions and 2 deletions

View File

@ -23,6 +23,9 @@
Because of this, the 32-bit version is also discontinued, as 10.7
is 64-bit Intel only.
* The debugger 'reset' command now does a complete system reset,
instead of simply setting the PC to the reset vector address.
* Updated included PNG library to latest stable version.
-Have fun!

View File

@ -260,7 +260,7 @@ const string Debugger::invIfChanged(int reg, int oldReg)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Debugger::reset()
{
myCpuDebug->setPC(dpeek(0xfffc));
mySystem.reset();
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -1192,7 +1192,7 @@ void DebuggerParser::executeReset()
{
debugger.reset();
debugger.rom().invalidate();
commandResult << "reset CPU";
commandResult << "reset system";
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -