Added PSW to Debugger register dump
This commit is contained in:
parent
1c9ea6445b
commit
c61876a568
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue