2018-08-14 18:14:32 +00:00
|
|
|
/* Apple ][ Header File */
|
|
|
|
|
2018-09-12 13:54:54 +00:00
|
|
|
/* Platform Specific Constants */
|
2018-08-14 18:14:32 +00:00
|
|
|
#define DELKEY $08 //Delete/Backspace Key
|
|
|
|
#define ESCKEY $1B //Escape/Stop Key
|
|
|
|
#define RTNKEY $0D //Return/Enter Key
|
|
|
|
|
2018-09-12 13:54:54 +00:00
|
|
|
/* Standard Library Pointers */
|
2018-08-14 18:14:32 +00:00
|
|
|
char srclo,srchi; //Source String Pointer for Library Functions
|
|
|
|
char dstlo,dsthi; //Destination String Pointer for Library Functions
|
2019-03-23 00:14:00 +00:00
|
|
|
char bfrlo,bfrhi; //Buffer Pointer for Library Functions
|
2018-08-14 18:14:32 +00:00
|
|
|
char blklo,blkhi; //Block Segment Pointer
|
|
|
|
char stklo,stkhi; //System Pointer
|
|
|
|
|
2018-09-12 13:54:54 +00:00
|
|
|
/* Standard Library Variables */
|
|
|
|
char blkslo, blkshi; //Block Start Address
|
|
|
|
char blkelo, blkehi; //Block 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
|
2018-08-14 18:14:32 +00:00
|
|
|
char temp0, temp1, temp2, temp3; //Temporary Variables
|
|
|
|
|
2018-09-12 13:54:54 +00:00
|
|
|
/* Platform Specific Variables */
|
|
|
|
char invflg; //Video Invert Mask
|
|
|
|
|
|
|
|
/* Keyboard I/O */
|
|
|
|
char kbd; //Keyboard Data Register
|
|
|
|
char akd; //Keyboard Strobe Register
|
|
|
|
|
|
|
|
/* Monitor Subroutines */
|
2019-05-19 02:27:09 +00:00
|
|
|
void prbyte(); //Print Accumulator as Hexadecimal number
|
2018-09-12 13:54:54 +00:00
|
|
|
void prhex(); //Print Low Nybble of Accumulator as Hex Digit
|
|
|
|
|
|
|
|
/* System Subroutines */
|
|
|
|
void clrscr(); //Clear the Screen
|
|
|
|
void delchr(); //Delete previous character
|
|
|
|
char getchr(); //Wait for character from Console
|
|
|
|
char getkey(); //Read ASCII character from Console
|
|
|
|
char getpos(); //Get Cursor Position
|
|
|
|
char getsiz(); //Get Screen Size
|
|
|
|
void newlin(); //Advance cursor to beginning of next line
|
|
|
|
char polkey(); //Poll Console for character
|
|
|
|
char putchr(); //Print ASCII character to Console
|
|
|
|
void setpos(); //Set Cursor Position
|
2019-05-19 02:27:09 +00:00
|
|
|
|
|
|
|
//System Labels
|
|
|
|
start: //Start of Code
|
|
|
|
exit: //Return to Operating System
|