]> Shamusworld >> Repos - rmac/blob - procln.h
Initial commit.
[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, 2011 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 #ifndef __PROCLN_H__
9 #define __PROCLN_H__
10
11 #include "rmac.h"
12 #include "token.h"
13
14 // Globals, externals etc
15 extern IFENT *ifent;
16 extern char *comma_error;
17 extern char *locgl_error;
18 extern char *syntax_error;
19 extern int just_bss;
20 extern VALUE pcloc;
21 extern IFENT *ifent;
22 extern SYM *lab_sym;
23 extern char extra_stuff[];
24 extern LONG amsktab[];
25
26 // Prototypes
27 void init_procln(void);
28 void assemble(void);
29 int eject(void);
30 int d_if(void);
31 int d_else(void);
32 int d_endif(void);
33 int at_eol(void);
34
35 #endif // __PROCLN_H__