Support for RX11 diskette drives has been added, but is still untested
This commit is contained in:
parent
df78f3c476
commit
cacc2f7dad
32 changed files with 1531 additions and 660 deletions
|
|
@ -44,6 +44,7 @@ if (NODE) {
|
|||
var PC11 = require("./pc11");
|
||||
var RL11 = require("./rl11");
|
||||
var RK11 = require("./rk11");
|
||||
var RX11 = require("./rx11");
|
||||
}
|
||||
|
||||
class DevicePDP11 extends Component {
|
||||
|
|
@ -1204,6 +1205,10 @@ class DevicePDP11 extends Component {
|
|||
device = new RK11(parmsDevice);
|
||||
Component.bindComponentControls(device, eDevice, PDP11.APPCLASS);
|
||||
break;
|
||||
case 'rx11':
|
||||
device = new RX11(parmsDevice);
|
||||
Component.bindComponentControls(device, eDevice, PDP11.APPCLASS);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue