Finished PDP-10 logical operations
This commit is contained in:
parent
616f9d4cda
commit
b8a38c8ac6
5 changed files with 700 additions and 401 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue