Cleaned up the Front Panel address and data interfaces so that BOOTMON's "LIGHTS" test works as expected now

This commit is contained in:
Jeff 2016-11-09 12:46:03 -08:00 committed by Jeff Parsons
commit 595c40e446
10 changed files with 401 additions and 366 deletions

View file

@ -831,6 +831,17 @@ CPUStatePDP11.prototype.dispatchInterrupt = function(vector, priority)
return false;
};
/**
* isWaiting()
*
* @this {CPUStatePDP11}
* @return {boolean} (true if OPFLAG.WAIT is set, false otherwise)
*/
CPUStatePDP11.prototype.isWaiting = function()
{
return !!(this.opFlags & PDP11.OPFLAG.WAIT);
};
/**
* getPSW()
*