File: itbl-parse.h

package info (click to toggle)
binutils-h8300-hms 2.16.1-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 95,376 kB
  • ctags: 99,304
  • sloc: ansic: 702,349; asm: 261,813; exp: 45,962; makefile: 39,469; sh: 16,817; lisp: 8,454; yacc: 5,941; lex: 1,541; perl: 1,382; cpp: 1,339; sed: 285; pascal: 175; awk: 26
file content (29 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H

#ifndef YYSTYPE
typedef union 
  {
    char *str;
    int num;
    int processor;
    unsigned long val;
  } yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define	DREG	257
# define	CREG	258
# define	GREG	259
# define	IMMED	260
# define	ADDR	261
# define	INSN	262
# define	NUM	263
# define	ID	264
# define	NL	265
# define	PNUM	266


extern YYSTYPE yylval;

#endif /* not BISON_Y_TAB_H */