2018-01-28 18:30:49 +00:00
|
|
|
/* py65mon Header File */
|
|
|
|
|
2018-07-27 17:55:10 +00:00
|
|
|
//Platform Specific Constants
|
|
|
|
const #delkey = $08; //Backspace Key
|
|
|
|
const #esckey = $1B; //Escape Key
|
|
|
|
const #rtnkey = $0D; //Enter Key
|
|
|
|
|
2018-01-28 18:30:49 +00:00
|
|
|
//System Pointer Variables
|
2018-07-27 17:55:10 +00: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 18:30:49 +00:00
|
|
|
|
|
|
|
//System Variables
|
2018-02-02 21:33:57 +00:00
|
|
|
char blkslo, blkshi; //Block Start Address
|
|
|
|
char blkelo, blkehi; //Block End Address
|
|
|
|
char blklen; //Block Segment Length
|
2018-07-25 23:00:46 +00:00
|
|
|
char stkslo, stkshi; //Stack Start Address
|
|
|
|
char stkelo, stkehi; //Stsck End Address
|
2018-07-27 17:55:10 +00:00
|
|
|
char temp0, temp1; //Temporary Variables
|
|
|
|
char temp2, temp3;
|
2018-01-28 18:30:49 +00:00
|
|
|
|
|
|
|
//Memory Mapped I/O
|
2018-02-02 21:33:57 +00:00
|
|
|
char putcon; //Write Character to Console
|
|
|
|
char getcomn; //Read Character from Console
|
2018-01-28 18:30:49 +00:00
|
|
|
|
|
|
|
//System Subroutines
|
2018-02-02 21:33:57 +00:00
|
|
|
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
|