1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2025-02-18 13:30:27 +00:00
C02/src/label.h

34 lines
1.7 KiB
C
Raw Normal View History

/******************************************************
* C02 Label Parsing, Generation, and Lookup Routines *
******************************************************/
char curlbl[LABLEN+1]; //Most recently generated label
char cmplbl[LABLEN+1]; //Label for Comparison
char cndlbl[LABLEN+1]; //Label for Conditional Code
2017-04-30 21:17:50 -04:00
char endlbl[LABLEN+1]; //End Label
char forlbl[LABLEN+1]; //For Loop Label
2017-04-30 21:17:50 -04:00
char loplbl[LABLEN+1]; //Skip Increment Label
char skplbl[LABLEN+1]; //Skip Increment Label
char tmplbl[LABLEN+1]; //Temporary Label
char lblnam[MAXLAB+1][LABLEN+1]; //Label Name Table
int lbltyp[MAXLAB+1]; //Label Type
2017-04-30 21:17:50 -04:00
int lblblk[MAXLAB+1]; //Label Ends Program Block
int lblcnt; //Number of Labels in stack
int lblnxt; //Sequence of next label to be generated
char lbltmp[LABLEN+1]; //Label Temporary Storage
2018-03-15 23:40:58 -04:00
enum ltypes {LTNONE, LTIF, LTELSE, LTLOOP, LTEND, LTDO, LTDWHL, LTSLCT, LTCASE, LTFUNC}; //Label Types
enum lflags {LFNONE, LFBGN, LFEND}; //Label Flag Types
2018-02-13 17:25:57 -05:00
void chklbl(char* lbname); //Check Label Contents
int lstlbl(int lbflag); //Find Last Label of Specified Types *
void newlbl(char* lbname); //Generate New Block Label
2018-02-13 17:25:57 -05:00
int poplbl(); //Pop Last Label and Emit on Next Line
void prslbl(); //Parse Label From Code
void pshlbl(int lbtype, char* lbname); //Push Label onto Stack
void reqlbl(char* lbname); //Require Label
void setblk(int blkflg); //Set Block Flag for Last Label
void setlbl(char *lblset); //Emit word as Label on Next Line
2018-02-13 18:16:23 -05:00
int toplbl(char *rtlbl); //Get Top Label and Return Type