2017-04-22 18:39:52 +00:00
|
|
|
/************************************
|
|
|
|
* C02 Statement Compiling Routines *
|
|
|
|
************************************/
|
|
|
|
|
2018-02-13 22:25:57 +00:00
|
|
|
char asnvar[VARLEN+1]; //Assigned Variable Name
|
|
|
|
char asnidx[VARLEN+1] ; //Assigned Variable Index
|
|
|
|
int asnivt; //Assigned Index Variable Type
|
2017-04-22 18:39:52 +00:00
|
|
|
|
2018-02-13 23:16:23 +00:00
|
|
|
char xstmnt[LINELEN]; //Expected Statement
|
2017-05-05 03:15:53 +00:00
|
|
|
|
2018-02-13 22:25:57 +00:00
|
|
|
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
|