First stab at RK11 support

This commit is contained in:
Jeff Parsons 2016-11-21 18:10:20 -08:00 committed by Jeff Parsons
commit dcea4fb905
22 changed files with 1468 additions and 17 deletions

View file

@ -1167,6 +1167,10 @@ DevicePDP11.init = function()
device = new RL11(parmsDevice);
Component.bindComponentControls(device, eDevice, PDP11.APPCLASS);
break;
case 'rk11':
device = new RK11(parmsDevice);
Component.bindComponentControls(device, eDevice, PDP11.APPCLASS);
break;
}
}
};