SRC operands must be fetched before DST operands

This commit is contained in:
Jeff 2016-10-03 16:50:39 -07:00 committed by Jeff Parsons
commit a254abc7dc
6 changed files with 382 additions and 372 deletions

View file

@ -2878,13 +2878,12 @@ if (DEBUGGER) {
{
var sMsg;
if (this.flags.running) {
sMsg = "halting";
if (!fQuiet) this.println("halting");
this.stopCPU();
} else {
if (this.isBusy(true)) return;
sMsg = "already halted";
if (!fQuiet) this.println("already halted");
}
if (!fQuiet) this.println(sMsg);
};
/**