mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
432 B
17 lines
432 B
/* ===========================================================================
|
|
* uz80as, an assembler for the Zilog Z80 and several other microprocessors.
|
|
*
|
|
* Expression error reporting.
|
|
* ===========================================================================
|
|
*/
|
|
|
|
#ifndef EXPRINT_H
|
|
#define EXPRINT_H
|
|
|
|
#ifndef EXPR_H
|
|
#include "expr.h"
|
|
#endif
|
|
|
|
void exprint(enum expr_ecode ecode, const char *pline, const char *ep);
|
|
|
|
#endif
|
|
|