Subversion Repositories Vertical

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 mjames 1
#ifndef BISON_ACF_YACC_TAB_H
2
#define BISON_ACF_YACC_TAB_H
3
 
4
#ifndef YYSTYPE
5
typedef union
6
{
7
        char *string;
8
        int integer;
9
        generic_info_t *range;
10
        expression_t *exp;
11
} yystype;
12
#define YYSTYPE yystype
13
#define YYSTYPE_IS_TRIVIAL 1
14
#endif
15
#define FILEMODE 257
16
#define CMDMODE 258
17
#define CHIP 259
18
#define BEGIN_TOK 260
19
#define END 261
20
#define DEVICE 262
21
#define COMPONENTS 263
22
#define WIRED_NETS 264
23
#define CONN 265
24
#define END_CONN 266
25
#define JOINED_NETS 267
26
#define ALIAS 268
27
#define JUMPER 269
28
#define RENAME_PINS 270
29
#define TEMPLATE 271
30
#define FIX_LOCATION 272
31
#define LOCATION 273
32
#define UNROUTED 274
33
#define ROUTED 275
34
#define NAMED 276
35
#define ASSIGN 277
36
#define SIG_ASSIGN 278
37
#define CONNECTED 279
38
#define ROUTE_FLAGS 280
39
#define DECLARATION 281
40
#define INSTANCE 282
41
#define AHDL 283
42
#define VERILOG 284
43
#define SUBDESIGN 285
44
#define OPEN 286
45
#define BOOLEAN 287
46
#define TRUE 288
47
#define FALSE 289
48
#define TO 290
49
#define DOWNTO 291
50
#define GENERIC 292
51
#define RANGE 293
52
#define INTEGER 294
53
#define NATURAL 295
54
#define SIGNAL 296
55
#define CONSTANT 297
56
#define VHDL 298
57
#define PORT 299
58
#define ENTITY 300
59
#define IS 301
60
#define COMPONENT 302
61
#define MAP 303
62
#define ARCHITECTURE 304
63
#define OF 305
64
#define EQUIVALENT 306
65
#define TO_POW 307
66
#define MODULE 308
67
#define ENDMODULE 309
68
#define LIBRARY 310
69
#define USE 311
70
#define ALL 312
71
#define PACKAGE 313
72
#define FOR 314
73
#define PROCESS 315
74
#define ASSIGNED 316
75
#define AN 317
76
#define WIRE 318
77
#define GND 319
78
#define GND_RES_IO 320
79
#define GND_RES_IN 321
80
#define VCC 322
81
#define ATTRIBUTE 323
82
#define ENV_STRING 324
83
#define STRING 325
84
#define SHL 326
85
#define SHR 327
86
#define EQ_EQ 328
87
#define N_EQ 329
88
#define LOG_AND 330
89
#define LOG_OR 331
90
#define QUOTE 332
91
#define VHDL_CONN 333
92
#define QUOTED_STRING 334
93
#define TXT_STRING 335
94
#define NUM_STRING 336
95
#define PINDIR 337
96
#define UMINUS 338
97
 
98
extern YYSTYPE yylval;
99
 
100
#endif /* not BISON_ACF_YACC_TAB_H */