代码搜索结果
找到约 10,000 项符合
Y 的代码
y_output
0 $accept : program $end
1 program : MAIN LP RP LB stmt_seq RB
2 stmt_seq : stmt_seq stmt
3 |
4 stmt : if_stmt
5 | while_stmt
6 | exp_
parser.y
%{
#define YYPARSER /* distinguishes Yacc output from other code files */
#include "globals.h"
#include "util.h"
#include "scan.h"
#include "parse.h"
#include
#define YYSTYPE T
config.y
%token DEFBRK COLON OCTAL INTEGER IDENT CSR IVEC OVEC IRQ IINT OINT
INIT OPEN CLOSE READ WRITE SEEK CNTL IS ON GETC PUTC
%{
#include
#define NIL (dvptr)0
#define CONFIGC "conf.c"