Make component/script names match XML device names (specifically, serial and parallel, which used to be serialport and parallelport)

This commit is contained in:
Jeff Parsons 2016-12-29 13:21:22 -08:00 committed by Jeff Parsons
commit ded8f15e86
22 changed files with 913 additions and 925 deletions

View file

@ -62,8 +62,8 @@ At the time of this writing, the recommended order is:
* [pcx86/ram.js](lib/ram.js)
* [pcx86/keyboard.js](lib/keyboard.js)
* [pcx86/video.js](lib/video.js)
* [pcx86/parallelport.js](lib/parallelport.js)
* [pcx86/serialport.js](lib/serialport.js)
* [pcx86/parallel.js](lib/parallel.js)
* [pcx86/serial.js](lib/serial.js)
* [pcx86/mouse.js](lib/mouse.js)
* [pcx86/disk.js](lib/disk.js)
* [pcx86/fdc.js](lib/fdc.js)

View file

@ -78,7 +78,7 @@
"model": "deskpro386",
"sound": false
},
"serialport": {
"serial": {
"id": "com2",
"adapter": 2,
"binding": "console"

View file

@ -35,7 +35,7 @@ if (NODE) {
var State = require("../../shared/lib/state");
var PCX86 = require("./defines");
var Messages = require("./messages");
var SerialPort = require("./serialport");
var SerialPort = require("./serial");
}
/**