Fixed the PC8080 CPUState class name

This commit is contained in:
Jeff Parsons 2016-08-24 14:17:54 -07:00
commit 7dc4448f41
15 changed files with 408 additions and 408 deletions

View file

@ -43,7 +43,7 @@ if (NODE) {
*
* The CPU8080 class supports the following (parmsCPU) properties:
*
* cycles: the machine's base cycles per second; the CPUState8080 constructor
* cycles: the machine's base cycles per second; the CPU8080State constructor
* will provide us with a default (based on the CPU model) to use as a fallback.
*
* multiplier: base cycle multiplier; default is 1.
@ -64,7 +64,7 @@ if (NODE) {
* This component is primarily responsible for interfacing the CPU with the outside
* world (eg, Panel and Debugger components), and managing overall CPU operation.
*
* It is extended by the CPUState8080 component, where the simulation control logic resides.
* It is extended by the CPU8080State component, where the simulation control logic resides.
*
* @constructor
* @extends Component