]> Shamusworld >> Repos - rmac/blob - procln.h
6502 mode: fix clearing of its RAM space with each .6502 invocation. Also fixed chptr...
[rmac] / procln.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // PROCLN.H - Line Processing
4 // Copyright (C) 199x Landon Dyer, 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 IFENT * ifent;
17 extern const char comma_error[];
18 extern const char locgl_error[];
19 extern const char syntax_error[];
20 extern const char extra_stuff[];
21 extern int just_bss;
22 extern VALUE pcloc;
23 extern SYM * lab_sym;
24 extern LONG amsktab[];
25
26 // Exported functions
27 void InitLineProcessor(void);
28 void Assemble(void);
29 int d_if(void);
30 int d_else(void);
31 int d_endif(void);
32
33 #endif // __PROCLN_H__
34