~ubuntu-branches/debian/squeeze/stella/squeeze

« back to all changes in this revision

Viewing changes to src/yacc/y.tab.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Iseli
  • Date: 2006-04-08 18:38:25 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060408183825-vu1jk57rk929derx
* New Maintainer (Closes: #361345)
* New upstream release (Closes: #349725)
* Build-Depend now on libslang2-dev (Closes: #325577)
* Complete rebuild of debian/, upgraded to policy-standards
  3.6.2 and compat-level 5.
* Removed stellarc since stella only reads ~/.stellarc and even
  works without a first config.
* New debian/watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BISON_Y_TAB_H
 
2
# define BISON_Y_TAB_H
 
3
 
 
4
#ifndef YYSTYPE
 
5
typedef union {
 
6
        int val;
 
7
        char *equate;
 
8
        CPUDEBUG_INT_METHOD cpuMethod;
 
9
        TIADEBUG_INT_METHOD tiaMethod;
 
10
        Expression *exp;
 
11
        char *function;
 
12
} yystype;
 
13
# define YYSTYPE yystype
 
14
# define YYSTYPE_IS_TRIVIAL 1
 
15
#endif
 
16
# define        NUMBER  257
 
17
# define        ERR     258
 
18
# define        EQUATE  259
 
19
# define        CPU_METHOD      260
 
20
# define        TIA_METHOD      261
 
21
# define        FUNCTION        262
 
22
# define        LOG_OR  263
 
23
# define        LOG_AND 264
 
24
# define        LOG_NOT 265
 
25
# define        SHR     266
 
26
# define        SHL     267
 
27
# define        GTE     268
 
28
# define        LTE     269
 
29
# define        NE      270
 
30
# define        EQ      271
 
31
# define        DEREF   272
 
32
# define        UMINUS  273
 
33
 
 
34
 
 
35
extern YYSTYPE yylval;
 
36
 
 
37
#endif /* not BISON_Y_TAB_H */