Reworked test files for better error reporting
[nasm/perl-rewrite.git] / parser.h
blob0ebc19f3fe7bc2b280314aa91dc35826d6620c06
1 /* parser.h header file for the parser module of the Netwide
2 * Assembler
4 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 * Julian Hall. All rights reserved. The software is
6 * redistributable under the license given in the file "LICENSE"
7 * distributed in the NASM archive.
8 */
10 #ifndef NASM_PARSER_H
11 #define NASM_PARSER_H
13 void parser_global_info(struct ofmt *output, struct location * locp);
14 insn *parse_line(int pass, char *buffer, insn * result,
15 efunc error, evalfunc evaluate, ldfunc ldef);
16 void cleanup_insn(insn * instruction);
18 #endif