1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2025-02-17 21:30:34 +00:00
C02/include/py65.h02

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-01-28 13:30:49 -05:00
/* py65mon Header File */
2018-07-27 13:55:10 -04:00
//Platform Specific Constants
#define DELKEY $08 //Delete/Backspace Key
#define ESCKEY $1B //Escape/Stop Key
#define RTNKEY $0D //Return/Enter Key
#define NULKEY $00 //No Key was Pressed
2018-07-27 13:55:10 -04:00
2018-01-28 13:30:49 -05:00
//System Pointer Variables
2018-07-27 13:55:10 -04:00
char srclo,srchi; //Source String Pointer for Library Functions
char dstlo,dsthi; //Destination String Pointer for Library Functions
char blklo,blkhi; //Block Segment Pointer
char stklo,stkhi; //Stack Pointer
2018-01-28 13:30:49 -05:00
//System Variables
char blkslo, blkshi; //Block Start Address
char blkelo, blkehi; //Block End Address
char blklen; //Block Segment Length
2018-07-25 19:00:46 -04:00
char stkslo, stkshi; //Stack Start Address
char stkelo, stkehi; //Stsck End Address
2018-07-27 13:55:10 -04:00
char temp0, temp1; //Temporary Variables
char temp2, temp3;
2018-01-28 13:30:49 -05:00
//Memory Mapped I/O
char putcon; //Write Character to Console
char getcomn; //Read Character from Console
2018-01-28 13:30:49 -05:00
//System Subroutines
char plkey(); //Poll Console for character
char rdkey(); //Wait for character from Console
char getkey(); //Read ASCII character from Console
void newlin(); //Advance cursor to beginning of next line
void prchr(); //Print ASCII character to Console
void prbyte(); //Print Accumulator as Hexadadecimal number
void prhex(); //Print Low Nybble of Accumulator as Hex Digit