1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-11-22 16:34:15 +00:00
C02/include/apple1.h02

38 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-02-14 00:55:25 +00:00
/* Apple 1 Header File */
//Platform Specific Constants
#define DELKEY $5F //Delete/Backspace Key
#define ESCKEY $1B //Escape/Stop Key
#define RTNKEY $0D //Return/Enter Key
#define SYSBFL 128 //System Buffer Length
2018-02-14 00:55:25 +00:00
/* Standard Library Variables */
zeropage int srcptr, dstptr, bfrptr, blkptr;
char stklo,skthi; //System Pointer
2018-02-14 00:55:25 +00:00
int blkbgn, blkend; //Block Start and End Address
char blklen; //Block Segment Length
2018-02-14 00:55:25 +00:00
char stkslo, stkshi; //Stack Start Address
char stkelo, stkehi; //Stack End Address
char random, rdseed; //Pseudo-Random Number Generator
2018-02-14 00:55:25 +00:00
char temp0, temp1, temp2, temp3; //Temporary Variables
char sysbfr[], sysbfp; //System String Buffer and Position
2018-02-14 00:55:25 +00:00
//Monitor Subroutines
void echo(); //Print Character in Accumulator
void prbyte(); //Print Accumulator as Hexadadecimal number
void prhex(); //Print Low Nybble of Accumulator as Hex Digit
//System Subroutines
void delchr(); //Delete previous character
2018-02-14 00:55:25 +00:00
char getkey(); //Read ASCII character from Console
void newlin(); //Advance cursor to beginning of next line
char polkey(); //Poll Console for character
char putchr(); //Print ASCII character to Console
char getchr(); //Wait for character from Console
//System Labels
start: //Start of Code
exit: //Return to Operating System