First batch of pdp11.js code adapted but totally untested
This commit is contained in:
parent
475b08fa91
commit
100779e30a
22 changed files with 2697 additions and 1273 deletions
|
|
@ -739,6 +739,40 @@ BusPDP11.prototype.restoreMemory = function(a)
|
|||
return true;
|
||||
};
|
||||
|
||||
/**
|
||||
* reset_iopage()
|
||||
*
|
||||
* TODO: Implement
|
||||
*
|
||||
* @this {BusPDP11}
|
||||
*/
|
||||
BusPDP11.prototype.reset_iopage = function()
|
||||
{
|
||||
// display.misc = (display.misc & ~0x77) | 0x14; // kernel 16 bit
|
||||
// tty.rcsr = 0;
|
||||
// tty.xcsr = 0x80; /*0200*/
|
||||
// kw11.csr = 0;
|
||||
// rk11.rkcs = 0x80; /*0200*/
|
||||
// rl11.csr = 0x80;
|
||||
// rp11_init();
|
||||
};
|
||||
|
||||
/**
|
||||
* access_iopage(physicalAddress, data, byteFlag)
|
||||
*
|
||||
* TODO: Implement
|
||||
*
|
||||
* @this {BusPDP11}
|
||||
* @param {number} physicalAddress
|
||||
* @param {number} data
|
||||
* @param {number} byteFlag
|
||||
* @return {number}
|
||||
*/
|
||||
BusPDP11.prototype.access_iopage = function(physicalAddress, data, byteFlag)
|
||||
{
|
||||
return -1;
|
||||
};
|
||||
|
||||
/**
|
||||
* reportError(op, addr, size, fQuiet)
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue