#ifndef BISON_AVRPARSE_H # define BISON_AVRPARSE_H #ifndef YYSTYPE typedef union { regSA regid; instSA inst; opcodeSA opcode; valueSA val; nameSA name; symbolSA symb; indirectSA indi; functionSA func; stringSA string; } yystype; # define YYSTYPE yystype # define YYSTYPE_IS_TRIVIAL 1 #endif # define STAR 257 # define DIV 258 # define MOD 259 # define LS 260 # define RS 261 # define LE 262 # define GE 263 # define LESS 264 # define GREAT 265 # define EQ 266 # define NE 267 # define OR 268 # define XOR 269 # define AND 270 # define OROR 271 # define ANDAND 272 # define LPAR 273 # define RPAR 274 # define COLON 275 # define COMMA 276 # define DOT 277 # define EQUAL 278 # define PLUS 279 # define MINUS 280 # define WAVE 281 # define NOT 282 # define EOL 283 # define RESTART 284 # define ENDOFFILE 285 # define DEF 286 # define EQU 287 # define DB 288 # define DW 289 # define ORG 290 # define ALIGN 291 # define CSEG 292 # define DSEG 293 # define ESEG 294 # define BYTE 295 # define SET 296 # define DEVICE 297 # define STRING 298 # define MACRODEF 299 # define REGISTER 300 # define REGXYZ 301 # define SYMBOL 302 # define INTEGER 303 # define COUNTER 304 # define FUNCTION 305 # define IREGREG 306 # define IREGREGW 307 # define IIMMIMM 308 # define IREGIMM 309 # define IREGIMMW 310 # define IIMMREG 311 # define IREG 312 # define IIMM 313 # define INOARGS 314 # define IINDIRC 315 # define ILPM 316 extern YYSTYPE yylval; #endif /* not BISON_AVRPARSE_H */