Finished PDP-10 logical operations

This commit is contained in:
Jeff 2017-03-03 15:58:15 -08:00 committed by Jeff Parsons
commit b8a38c8ac6
5 changed files with 700 additions and 401 deletions

View file

@ -769,10 +769,12 @@ class CPUStatePDP10 extends CPUPDP10 {
* @this {CPUStatePDP10}
* @param {number} addr
* @param {number} data
* @return {number} (we return the data back to the caller to permit nested writes)
*/
writeWordToPhysical(addr, data)
{
this.bus.setWord(this.lastAddr = addr, data);
return data;
}
/**