1 // ACME - a crossassembler for producing 6502/65c02/65816/65ce02 code.
2 // Copyright (C) 1998-2016 Marco Baye
3 // Have a look at "acme.c" for further info
4 //
5 // Macro stuff
6 #ifndef macro_H
7 #define macro_H
8 
9 
10 #include "config.h"
11 
12 
13 // Prototypes
14 
15 // only call once (during first pass)
16 extern void Macro_parse_definition(void);
17 // Parse macro call ("+MACROTITLE"). Has to be re-entrant.
18 extern void Macro_parse_call(void);
19 
20 
21 #endif
22