H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame^] | 1 | /* parser.h header file for the parser module of the Netwide |
| 2 | * Assembler |
H. Peter Anvin | ea6e34d | 2002-04-30 20:51:32 +0000 | [diff] [blame] | 3 | * |
| 4 | * The Netwide Assembler is copyright (C) 1996 Simon Tatham and |
| 5 | * Julian Hall. All rights reserved. The software is |
| 6 | * redistributable under the licence given in the file "Licence" |
| 7 | * distributed in the NASM archive. |
| 8 | */ |
| 9 | |
| 10 | #ifndef NASM_PARSER_H |
| 11 | #define NASM_PARSER_H |
| 12 | |
| 13 | insn *parse_line (long segment, long offset, lfunc lookup_label, int pass, |
| 14 | char *buffer, insn *result, struct ofmt *output, |
| 15 | efunc error); |
| 16 | void cleanup_insn (insn *instruction); |
| 17 | |
| 18 | #endif |