Support for RX11 diskette drives has been added, but is still untested

This commit is contained in:
Jeff Parsons 2017-02-02 15:14:13 -08:00 committed by Jeff Parsons
commit cacc2f7dad
32 changed files with 1531 additions and 660 deletions

View file

@ -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;
}
}
}