mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-01 16:04:59 +00:00
13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
/* py65mon Header File */
|
|
|
|
//Memory Mapped I/O
|
|
char putc; //Write Character to Console
|
|
char getc; //Read Character from Console
|
|
|
|
//System Subroutines
|
|
char plkey(); //Poll Console for character
|
|
char rdkey(); //Wait for character from Console
|
|
char getkey(); //Read ASCII character from Console
|
|
void prchr(); //Print ASCII character to Console
|
|
|