Changed the primary means updating the PSW to setPSW(), and put some handcuffs on writePSW()
This commit is contained in:
parent
7b3a2cb676
commit
0e38c6dbc7
6 changed files with 378 additions and 357 deletions
|
|
@ -308,8 +308,8 @@ BusPDP11.prototype.initMemory = function()
|
|||
}
|
||||
this.afnIOPage = new Array(4);
|
||||
this.afnIOPage[0] = BusPDP11.controller.readIOPageByte;
|
||||
this.afnIOPage[1] = BusPDP11.controller.readIOPageShort;
|
||||
this.afnIOPage[2] = BusPDP11.controller.writeIOPageByte;
|
||||
this.afnIOPage[1] = BusPDP11.controller.writeIOPageByte;
|
||||
this.afnIOPage[2] = BusPDP11.controller.readIOPageShort;
|
||||
this.afnIOPage[3] = BusPDP11.controller.writeIOPageShort;
|
||||
this.addrIOPage = this.addrTotal - BusPDP11.IOPAGE_LENGTH;
|
||||
this.addMemory(this.addrIOPage, BusPDP11.IOPAGE_LENGTH, MemoryPDP11.TYPE.CONTROLLER, this);
|
||||
|
|
|
|||
Loading…
Reference in a new issue