Added initial logic for decoding PDP-10 input-output instructions

This commit is contained in:
Jeff 2017-03-04 16:47:56 -08:00 committed by Jeff Parsons
commit 1ac769431f
7 changed files with 431 additions and 287 deletions

View file

@ -690,7 +690,8 @@ class CPUStatePDP11 extends CPUPDP11 {
this.opLast,
this.pswTrap,
this.trapReason,
this.trapVector
this.trapVector,
this.addrReset
]);
state.set(1, [this.getPSW(),this.getMMR0(),this.getMMR1(),this.getMMR2(),this.getMMR3()]);
state.set(2, [this.nTotalCycles, this.getSpeed(), this.flags.autoStart]);
@ -731,7 +732,8 @@ class CPUStatePDP11 extends CPUPDP11 {
this.opLast,
this.pswTrap,
this.trapReason,
this.trapVector
this.trapVector,
this.addrReset
] = data[0];
var a = data[1];