URL
https://opencores.org/ocsvn/raptor64/raptor64/trunk
Subversion Repositories raptor64
[/] [raptor64/] [trunk/] [software/] [c64/] [source/] [Intexpr.c] - Rev 43
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include "c.h" #include "expr.h" #include "gen.h" #include "cglbdec.h" /* * 68000 C compiler * * Copyright 1984, 1985, 1986 Matthew Brandt. * all commercial rights reserved. * * This compiler is intended as an instructive tool for personal use. Any * use for profit without the written consent of the author is prohibited. * * This compiler may be distributed freely for non-commercial use as long * as this notice stays intact. Please forward any enhancements or questions * to: * * Matthew Brandt * Box 920337 * Norcross, Ga 30092 */ /******************************************************* Modified to support Raptor64 'C64' language by Robert Finch robfinch@opencores.org *******************************************************/ int GetIntegerExpression() /* simple integer value */ { int temp; SYM *sp; if(lastst == id) { sp = gsearch(lastid); if(sp == NULL) { error(ERR_UNDEFINED); NextToken(); return 0; } if(sp->storage_class != sc_const) { error(ERR_SYNTAX); NextToken(); return 0; } NextToken(); return sp->value.i; } else if(lastst == iconst) { temp = ival; NextToken(); return temp; } NextToken(); error(ERR_SYNTAX); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log