]> Shamusworld >> Repos - rmac/blob - procln.h
Add support for some missing ptestr/ptestrw/fsmove/fdmove. Add DSM in directives tab
[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-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 __PROCLN_H__
10 #define __PROCLN_H__
11
12 #include "rmac.h"
13 #include "token.h"
14
15 // Imported functions
16 int m_ptestr(WORD inste, WORD siz);
17 int m_ptestw(WORD inste, WORD siz);
18
19 // Exported variables
20 extern const char comma_error[];
21 extern const char locgl_error[];
22 extern const char syntax_error[];
23 extern const char extra_stuff[];
24 extern int just_bss;
25 extern uint32_t pcloc;
26 extern SYM * lab_sym;
27 extern LONG amsktab[];
28 extern IFENT * ifent;
29 extern IFENT * f_ifent;
30 extern int disabled;
31
32 // Exported functions
33 void InitLineProcessor(void);
34 void Assemble(void);
35
36 #endif // __PROCLN_H__
37