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