mirror of https://github.com/stella-emu/stella.git
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:
parent
086658799d
commit
d5a470cbcc
|
@ -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!
|
||||
|
|
|
@ -260,7 +260,7 @@ const string Debugger::invIfChanged(int reg, int oldReg)
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void Debugger::reset()
|
||||
{
|
||||
myCpuDebug->setPC(dpeek(0xfffc));
|
||||
mySystem.reset();
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
|
@ -1192,7 +1192,7 @@ void DebuggerParser::executeReset()
|
|||
{
|
||||
debugger.reset();
|
||||
debugger.rom().invalidate();
|
||||
commandResult << "reset CPU";
|
||||
commandResult << "reset system";
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue