PDP-11 command-line (Node-based) operation is finally working

This commit is contained in:
Jeff Parsons 2016-12-30 14:51:32 -08:00 committed by Jeff Parsons
commit 4b345bb3d2
19 changed files with 552 additions and 438 deletions

View file

@ -226,9 +226,9 @@ class DebuggerPDP11 extends Debugger {
* @param {number} [nBase]
* @return {DbgAddrPDP11}
*/
newAddr(addr, fPhysical, nBase)
newAddr(addr = null, fPhysical = false, nBase)
{
return {addr: addr || null, fPhysical: fPhysical || false, fTemporary: false, nBase: nBase};
return {addr: addr, fPhysical: fPhysical, fTemporary: false, nBase: nBase};
}
/**