]> Shamusworld >> Repos - rmac/blob - macro.h
Version bump + cleanup for last commit; now at v2.0.19.
[rmac] / macro.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // MACRO.H - Macro Definition and Invocation
4 // Copyright (C) 199x Landon Dyer, 2011-2020 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source utilised with the kind permission of Landon Dyer
7 //
8
9 #ifndef __MACRO_H__
10 #define __MACRO_H__
11
12 #include "rmac.h"
13
14 // Exported variables
15 extern LONG curuniq;
16 extern TOKEN * argPtrs[];
17
18 // Exported functions
19 void InitMacro(void);
20 int ExitMacro(void);
21 int DefineMacro(void);
22 int HandleRept(void);
23 int InvokeMacro(SYM *, WORD);
24
25 #endif // __MACRO_H__