mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-24 15:31:17 +00:00
15 lines
559 B
C
15 lines
559 B
C
/************************************
|
|
* C02 Statement Compiling Routines *
|
|
************************************/
|
|
|
|
char asnvar[VARLEN+1]; //Assigned Variable Name
|
|
char asnidx[VARLEN+1] ; //Assigned Variable Index
|
|
int asnivt; //Assigned Index Variable Type
|
|
|
|
char xstmnt[LINELEN]; //Expected Statement
|
|
|
|
void bgnblk(char blkchr); //End Program Block
|
|
void endblk(int blkflg); //End Program Block
|
|
void pdowhl(); //Parse and Compile WHILE after DO
|
|
void pstmnt(); //Parse and Compile Program Statement
|