More README cleanup

This commit is contained in:
Jeff Parsons 2016-05-19 20:10:09 -07:00
commit ab1d25c289
55 changed files with 1090 additions and 335 deletions

View file

@ -4,17 +4,17 @@ title: PCjs Project Modules
permalink: /modules/
---
Project Modules
PCjs Project Modules
===
The **modules** folder contains all the JavaScript source code for the PCjs Project, organized into Node modules.
It is our *private* counterpart to the **node_modules** folder, where all *public* Node modules are installed.
This folder contains all the JavaScript modules for the [PCjs Project](https://github.com/jeffpar/pcjs).
It is our *private* counterpart to the **node_modules** folder, where all *public* Node modules are typically installed.
The project includes these emulation modules:
The project currently includes these emulation modules:
* [PCx86](pcx86/), the x86-based PC emulation module
* [PC8080](pc8080/), the 8080-based machine emulation module
* [C1Pjs](c1pjs/), the 6502-based Challenger 1P emulation module
* [PCx86](pcx86/), the emulation module for [x86-based machines](/devices/pcx86/)
* [PC8080](pc8080/), the emulation module for [8080-based machines](/devices/pc8080/)
* [C1Pjs](c1pjs/), the 6502-based emulation module for the [Challenger 1P](/devices/c1p/)
along with variety of Node support modules, such as:
@ -23,5 +23,5 @@ along with variety of Node support modules, such as:
* [HTMLOut](htmlout/)
* [MarkOut](markout/)
Only private Node modules are checked into this project. If any of these modules are later published on
Only private Node modules are checked into the project. If any of these modules are later published on
[npmjs.org](http://npmjs.org), then they will be moved to **node_modules** and removed from this folder.