Improved the compiler documentation, a little bit.

This commit is contained in:
Greg King
2015-05-26 11:23:54 -04:00
parent bbb6f89731
commit b49fd26d16
2 changed files with 33 additions and 33 deletions

View File

@@ -597,7 +597,7 @@ variable which is stored in the zero page memory space in order to allow
for retrieval of each character in the string via the indirect indexed
addressing mode.
The assembly language routine is stored in a file named
The assembly language routine is stored in a file names
"rs232_tx.s" and is shown below:
<tscreen><code>
@@ -681,7 +681,7 @@ all of the behind-the-scene work is transparent to the user.
#define TX_FIFO_FULL (FIFO_STATUS &amp; 0x01)
#define RX_FIFO_EMPTY (FIFO_STATUS &amp; 0x02)
extern void wait (void);
extern void wait ();
extern void __fastcall__ rs232_tx (char *str);
int main () {