mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-02 08:06:55 +00:00
13 lines
466 B
C
13 lines
466 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]; //Required Statement
|
|
|
|
void endblk(); //End Program Block
|
|
void pstmnt(); //Parse and Compile Program Statement
|