Skip to content

Commit

Permalink
Fix typo in manual.
Browse files Browse the repository at this point in the history
Correct typo in Programmers Reference Manual.
  • Loading branch information
makarcz committed Sep 7, 2018
1 parent 36dcd1a commit b730b0c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ProgrammersReferenceManual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ Op-code execute history: disabled.
BEQ readchar ; A = NULL, keep reading char I/O
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
RTS ; A = char code
Expand Down Expand Up @@ -422,8 +422,9 @@ Op-code execute history: disabled.

Programmer should use this class to implement all the pieces of the
emulated virtual computer system on the highest abstraction level.
In current version the VMachine class initializes the basic system with CPU
and memory at its core and character and raster graphics display devices.
In current version the VMachine class initializes the basic system, which
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.

Expand Down

0 comments on commit b730b0c

Please sign in to comment.