]> Shamusworld >> Repos - rmac/blob - procln.h
559081ffc51e40f969de48495f0066b8f9ac0300
[rmac] / procln.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // PROCLN.H - Line Processing
4 // Copyright (C) 199x Landon Dyer, 2011-2017 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 __PROCLN_H__
10 #define __PROCLN_H__
11
12 #include "rmac.h"
13 #include "token.h"
14
15 // Exported variables
16 extern const char comma_error[];
17 extern const char locgl_error[];
18 extern const char syntax_error[];
19 extern const char extra_stuff[];
20 extern int just_bss;
21 extern uint32_t pcloc;
22 extern SYM * lab_sym;
23 extern LONG amsktab[];
24 extern IFENT * ifent;
25 extern IFENT * f_ifent;
26 extern int disabled;
27
28 // Exported functions
29 void InitLineProcessor(void);
30 void Assemble(void);
31
32 #endif // __PROCLN_H__
33