Cleaned up the Front Panel address and data interfaces so that BOOTMON's "LIGHTS" test works as expected now
This commit is contained in:
parent
0de3db14b6
commit
595c40e446
10 changed files with 401 additions and 366 deletions
|
|
@ -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()
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue