From b730b0cb1a4cb160e88286ae6653b5fc9f2f7c66 Mon Sep 17 00:00:00 2001 From: Marek Karcz Date: Fri, 7 Sep 2018 02:13:47 -0400 Subject: [PATCH] Fix typo in manual. Correct typo in Programmers Reference Manual. --- ProgrammersReferenceManual.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ProgrammersReferenceManual.txt b/ProgrammersReferenceManual.txt index 05710c4..ef435e8 100644 --- a/ProgrammersReferenceManual.txt +++ b/ProgrammersReferenceManual.txt @@ -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 @@ -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.