Added PSW to Debugger register dump

This commit is contained in:
Jeff Parsons 2016-09-20 14:56:05 -07:00 committed by Jeff Parsons
commit c61876a568

View file

@ -2187,7 +2187,7 @@ if (DEBUGGER) {
sDump += this.getRegOutput(i); sDump += this.getRegOutput(i);
} }
sDump += '\n'; sDump += '\n';
sDump += this.getRegOutput(DebuggerPDP11.REG_SP) + this.getRegOutput(DebuggerPDP11.REG_PC); sDump += this.getRegOutput(DebuggerPDP11.REG_SP) + this.getRegOutput(DebuggerPDP11.REG_PC) + this.getRegOutput(DebuggerPDP11.REG_PSW);
sDump += this.getFlagOutput('T') + this.getFlagOutput('N') + this.getFlagOutput('Z') + this.getFlagOutput('V') + this.getFlagOutput('C'); sDump += this.getFlagOutput('T') + this.getFlagOutput('N') + this.getFlagOutput('Z') + this.getFlagOutput('V') + this.getFlagOutput('C');
return sDump; return sDump;
}; };