Fix typo in manual.

Correct typo in Programmers Reference Manual.
This commit is contained in:
Marek Karcz 2018-09-07 02:13:47 -04:00
parent 36dcd1adb3
commit b730b0cb1a
1 changed files with 4 additions and 3 deletions

View File

@ -294,7 +294,7 @@ Op-code execute history: disabled.
BEQ readchar ; A = NULL, keep reading char I/O BEQ readchar ; A = NULL, keep reading char I/O
RTS ; A = char code RTS ; A = char code
- a 'waiting' character inpute implemented using blocking char I/O - a 'waiting' character input implemented using blocking char I/O
readchar: LDA $E000 readchar: LDA $E000
RTS ; A = char code RTS ; A = char code
@ -422,8 +422,9 @@ Op-code execute history: disabled.
Programmer should use this class to implement all the pieces of the Programmer should use this class to implement all the pieces of the
emulated virtual computer system on the highest abstraction level. emulated virtual computer system on the highest abstraction level.
In current version the VMachine class initializes the basic system with CPU In current version the VMachine class initializes the basic system, which
and memory at its core and character and raster graphics display devices. contains following core components: CPU and memory
and devices: character I/O and raster graphics display.
Going one step down the abstraction layer are MKCPu and Memory classes. Going one step down the abstraction layer are MKCPu and Memory classes.