2018-01-28 18:30:49 +00:00
|
|
|
/* py65mon Header File */
|
|
|
|
|
2018-07-27 17:55:10 +00:00
|
|
|
//Platform Specific Constants
|
2018-08-03 15:22:12 +00:00
|
|
|
#define DELKEY $08 //Delete/Backspace Key
|
|
|
|
#define ESCKEY $1B //Escape/Stop Key
|
|
|
|
#define RTNKEY $0D //Return/Enter Key
|
2018-07-27 17:55:10 +00:00
|
|
|
|
2018-08-14 18:14:32 +00:00
|
|
|
//Library Pointer Variables
|
2020-10-16 02:58:12 +00:00
|
|
|
zeropage int srcptr, dstptr, bfrptr, blkptr;
|
2019-03-23 00:28:43 +00:00
|
|
|
char bfrlo,bfrhi; //Buffer Pointer for Library Functions
|
2018-08-14 18:14:32 +00:00
|
|
|
char stklo,stkhi; //Stack Pointer
|
2018-01-28 18:30:49 +00:00
|
|
|
|
2018-08-14 18:14:32 +00:00
|
|
|
//Library Variables
|
2020-10-16 02:58:12 +00:00
|
|
|
int blkbgn, blkend; //Block Start and End Address
|
|
|
|
char blklen; //Block Segment Length
|
2018-08-14 18:14:32 +00:00
|
|
|
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
|
2018-01-28 18:30:49 +00:00
|
|
|
|
|
|
|
//Memory Mapped I/O
|
2018-08-14 18:14:32 +00:00
|
|
|
char putcon; //Write Character to Console
|
2019-11-15 18:27:55 +00:00
|
|
|
char getcon; //Read Character from Console
|
2018-01-28 18:30:49 +00:00
|
|
|
|
|
|
|
//System Subroutines
|
2018-09-17 00:30:25 +00:00
|
|
|
char polkey(); //Poll Console for character
|
|
|
|
char getchr(); //Wait for character from Console
|
2018-08-14 18:14:32 +00:00
|
|
|
char getkey(); //Read ASCII character from Console
|
|
|
|
void newlin(); //Advance cursor to beginning of next line
|
|
|
|
void delchr(); //Delete previous character
|
2018-09-17 00:30:25 +00:00
|
|
|
char putchr(); //Print ASCII character to Console
|
2018-08-14 18:14:32 +00:00
|
|
|
void prbyte(); //Print Accumulator as Hexadadecimal number
|
|
|
|
void prhex(); //Print Low Nybble of Accumulator as Hex Digit
|
2019-05-19 02:27:09 +00:00
|
|
|
|
|
|
|
//System Labels
|
|
|
|
start: //Start of Code
|
|
|
|
exit: //Return to Operating System
|