home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
mac
/
0500
/
CCE_0502.ZIP
/
CCE_0502.PD
/
DSP_ASM
/
LEX.C
< prev
next >
Wrap
C/C++ Source or Header
|
1992-11-14
|
695b
|
42 lines
/*******************************************************
*
* a56 - a DSP56001 assembler
*
* Written by Quinn C. Jensen
* July 1990
* jensenq@npd.novell.com (or jensenq@qcj.icon.com)
*
*******************************************************\
/*
* lex.c - lexical analyzer envelope. lexyy.c, included below,
* is the LEX-generated code.
*
*/
#include "a56.h"
#include "gram.h"
extern YYSTYPE yyval;
int ldebug;
#define LDEBUG
#ifdef LDEBUG
#define RET(val) \
if(ldebug) {\
printf("%s ", tok_print(val));\
fflush(stdout);\
}\
return(val)
#else
#define RET(val) return(val)
#endif
double atof();
#include "lexyy.c"