This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
typedef union
{
int ival;
float fval;
string * sval;
constdef * cdef;
std::vector<constdef> * consts;
std::vector<string> * line;
std::list<std::vector<string> > * lines;
} YYSTYPE;
#define HEADER 257
#define NEWLINE 258
#define NUMBER 259
#define REG 260
#define DEF 261
#define ADDROP 262
#define BLENDOP 263
extern YYSTYPE ps10_lval;