1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2025-02-19 19:31:04 +00:00
C02/include/py65min.h02

19 lines
578 B
Plaintext
Raw Normal View History

2018-02-13 19:55:25 -05:00
/* py65mon Header File */
2018-08-14 14:14:32 -04:00
#define DELKEY $08 //Delete/Backspace Key
#define ESCKEY $1B //Escape/Stop Key
#define RTNKEY $0D //Return/Enter Key
2018-02-13 19:55:25 -05:00
//Memory Mapped I/O
char putc; //Write Character to Console
char getc; //Read Character from Console
//System Subroutines
2018-08-14 14:14:32 -04:00
void newlin(); //Advance cursor to beginning of next line
void delchr(); //Delete previous character
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
2018-02-13 19:55:25 -05:00