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

File diff suppressed because it is too large Load diff

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;
}
/**

View file

@ -3898,7 +3898,7 @@ if (DEBUGGER) {
0o42000: DebuggerPDP10.OPS.ANDCM,
0o42400: DebuggerPDP10.OPS.SETA,
0o43000: DebuggerPDP10.OPS.XOR,
0o43400: DebuggerPDP10.OPS.IOR,
0o43400: DebuggerPDP10.OPS.IOR, // MACRO alias: OR
0o44000: DebuggerPDP10.OPS.ANDCB,
0o44400: DebuggerPDP10.OPS.EQV,
0o45000: DebuggerPDP10.OPS.SETCA,