/* py65mon Header File */ //Platform Specific Constants #define DELKEY $08 //Delete/Backspace Key #define ESCKEY $1B //Escape/Stop Key #define RTNKEY $0D //Return/Enter Key //Library Pointer Variables zeropage int srcptr, dstptr, bfrptr, blkptr; char bfrlo,bfrhi; //Buffer Pointer for Library Functions char stklo,stkhi; //Stack Pointer //Library Variables int blkbgn, blkend; //Block Start and End Address char blklen; //Block Segment Length char stkslo, stkshi; //Stack Start Address char stkelo, stkehi; //Stsck End Address char random, rdseed; //Pseudo-Random Number Generation char temp0, temp1, temp2, temp3; //Temporary Storage //Memory Mapped I/O char putcon; //Write Character to Console char getcon; //Read Character from Console //System Subroutines char polkey(); //Poll Console for character char getchr(); //Wait for character from Console char getkey(); //Read ASCII character from Console void newlin(); //Advance cursor to beginning of next line void delchr(); //Delete previous character char putchr(); //Print ASCII character to Console void prbyte(); //Print Accumulator as Hexadadecimal number void prhex(); //Print Low Nybble of Accumulator as Hex Digit //System Labels start: //Start of Code exit: //Return to Operating System