]> git.sur5r.net Git - cc65/blob - test/ref/yaccdbg.c
Only for jumps, the lib uses named asm labels in branches
[cc65] / test / ref / yaccdbg.c
1 /*
2   !!DESCRIPTION!! verbose/debug version of yacc.c (if one fails and the other does not you most likely have a stack related problem)
3   !!ORIGIN!!      LCC 4.1 Testsuite
4   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
5 */
6
7 /*#define STANDALONE*/
8
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <ctype.h>
12
13 #define INFILE   "yaccdbg.in"
14
15 #define LEXDEBUG
16 #define YYDEBUG
17
18 #define YACCDBG
19 #include "yacc.c"