Setting up repository
[linux-libre-firmware.git] / as31 / as31 / parser.h
1 /* A Bison parser, made by GNU Bison 1.875d.  */
2
3 /* Skeleton parser for Yacc-like parsing with Bison,
4    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place - Suite 330,
19    Boston, MA 02111-1307, USA.  */
20
21 /* As a special exception, when this file is copied by Bison into a
22    Bison output file, you may use that output file without restriction.
23    This special exception was added by the Free Software Foundation
24    in version 1.24 of Bison.  */
25
26 /* Tokens.  */
27 #ifndef YYTOKENTYPE
28 # define YYTOKENTYPE
29    /* Put the tokens into the symbol table, so that GDB and other debuggers
30       know about them.  */
31    enum yytokentype {
32      STRING = 258,
33      D_ORG = 259,
34      D_BYTE = 260,
35      D_WORD = 261,
36      D_SKIP = 262,
37      D_EQU = 263,
38      D_FLAG = 264,
39      D_END = 265,
40      ACALL = 266,
41      ADD = 267,
42      ADDC = 268,
43      AJMP = 269,
44      ANL = 270,
45      CJNE = 271,
46      CLR = 272,
47      CPL = 273,
48      DA = 274,
49      DEC = 275,
50      DIV = 276,
51      DJNZ = 277,
52      INC = 278,
53      JB = 279,
54      JBC = 280,
55      JC = 281,
56      JMP = 282,
57      JNB = 283,
58      JNC = 284,
59      JNZ = 285,
60      JZ = 286,
61      LCALL = 287,
62      LJMP = 288,
63      MOV = 289,
64      MOVC = 290,
65      MOVX = 291,
66      NOP = 292,
67      MUL = 293,
68      ORL = 294,
69      POP = 295,
70      PUSH = 296,
71      RET = 297,
72      RETI = 298,
73      RL = 299,
74      RLC = 300,
75      RR = 301,
76      RRC = 302,
77      SETB = 303,
78      SJMP = 304,
79      SUBB = 305,
80      SWAP = 306,
81      XCH = 307,
82      XCHD = 308,
83      XRL = 309,
84      AB = 310,
85      A = 311,
86      C = 312,
87      PC = 313,
88      DPTR = 314,
89      BITPOS = 315,
90      R0 = 316,
91      R1 = 317,
92      R2 = 318,
93      R3 = 319,
94      R4 = 320,
95      R5 = 321,
96      R6 = 322,
97      R7 = 323,
98      VALUE = 324,
99      SYMBOL = 325
100    };
101 #endif
102 #define STRING 258
103 #define D_ORG 259
104 #define D_BYTE 260
105 #define D_WORD 261
106 #define D_SKIP 262
107 #define D_EQU 263
108 #define D_FLAG 264
109 #define D_END 265
110 #define ACALL 266
111 #define ADD 267
112 #define ADDC 268
113 #define AJMP 269
114 #define ANL 270
115 #define CJNE 271
116 #define CLR 272
117 #define CPL 273
118 #define DA 274
119 #define DEC 275
120 #define DIV 276
121 #define DJNZ 277
122 #define INC 278
123 #define JB 279
124 #define JBC 280
125 #define JC 281
126 #define JMP 282
127 #define JNB 283
128 #define JNC 284
129 #define JNZ 285
130 #define JZ 286
131 #define LCALL 287
132 #define LJMP 288
133 #define MOV 289
134 #define MOVC 290
135 #define MOVX 291
136 #define NOP 292
137 #define MUL 293
138 #define ORL 294
139 #define POP 295
140 #define PUSH 296
141 #define RET 297
142 #define RETI 298
143 #define RL 299
144 #define RLC 300
145 #define RR 301
146 #define RRC 302
147 #define SETB 303
148 #define SJMP 304
149 #define SUBB 305
150 #define SWAP 306
151 #define XCH 307
152 #define XCHD 308
153 #define XRL 309
154 #define AB 310
155 #define A 311
156 #define C 312
157 #define PC 313
158 #define DPTR 314
159 #define BITPOS 315
160 #define R0 316
161 #define R1 317
162 #define R2 318
163 #define R3 319
164 #define R4 320
165 #define R5 321
166 #define R6 322
167 #define R7 323
168 #define VALUE 324
169 #define SYMBOL 325
170
171
172
173
174 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
175 typedef int YYSTYPE;
176 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
177 # define YYSTYPE_IS_DECLARED 1
178 # define YYSTYPE_IS_TRIVIAL 1
179 #endif
180
181 extern YYSTYPE yylval;
182
183
184