Lots of work to try to bring the new RL11 component up to snuff

This commit is contained in:
Jeff 2016-10-29 11:32:31 -07:00 • committed by Jeff Parsons
commit 96ad4ec37e
6 changed files with 978 additions and 558 deletions

View file

@ -93,7 +93,7 @@ function DiskPDP11(controller, drive, mode)
this.drive = drive;
/*
* We pull out a number of drive properties that we may or may not need as defaults
* We pull out a number of drive properties that we may or may not need as defaults.
*/
this.sDiskName = drive.name;
this.fRemovable = drive.fRemovable;
@ -1230,4 +1230,4 @@ DiskPDP11.prototype.dumpSector = function(sector, pba, sDesc)
return sDump;
};
if (NODE) module.exports = Disk;
if (NODE) module.exports = DiskPDP11;