1 /****************************************************************************/
2 /*                                                                          */
3 /*  Actel version 1.1             May 2003                                  */
4 /*                                                                          */
5 /****************************************************************************/
6 
7 #define AND_TOK 257
8 #define OR_TOK 258
9 #define EQUALITY_TOK 259
10 #define INEQUALITY_TOK 260
11 #define GREATER_TOK 261
12 #define LESS_TOK 262
13 #define GREATER_EQ_TOK 263
14 #define LESS_OR_EQ_TOK 264
15 #define LEFT_SHIFT_TOK 265
16 #define RIGHT_SHIFT_TOK 266
17 #define DOT_DOT_TOK 267
18 #define ABS_TOK 268
19 #define INT_TOK 269
20 #define LOG2_TOK 270
21 #define SQRT_TOK 271
22 #define CIEL_TOK 272
23 #define FLOOR_TOK 273
24 #define VALUE_TOK 274
25 #define IDENTIFIER_TOK 275
26 #define ARRAY_TOK 276
27 #define ERROR_TOK 277
28 #define UNARY_MINUS 278
29 #define UNARY_PLUS 279
30