]> Shamusworld >> Repos - rmac/blob - direct.h
Minor code cleanups.
[rmac] / direct.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // DIRECT.H - Directive Handling
4 // Copyright (C) 199x Landon Dyer, 2011-2019 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 __DIRECT_H__
10 #define __DIRECT_H__
11
12 #include "rmac.h"
13 #include "token.h"
14
15 // Exported variables
16 extern TOKEN exprbuf[];
17 extern SYM * symbolPtr[];
18 extern int (* dirtab[])();
19 extern int largestAlign[];
20
21 // Exported functions
22 void auto_even(void);
23 int dep_block(uint32_t, WORD, uint32_t, WORD, TOKEN *);
24 int eject(void);
25 int abs_expr(uint64_t *);
26 int symlist(int(*)());
27
28 int d_even(void);
29 int d_long(void);
30 int d_phrase(void);
31 int d_dphrase(void);
32 int d_qphrase(void);
33
34 int d_if(void);
35 int d_else(void);
36 int d_endif(void);
37
38 int d_68000(void);
39 int d_68000(void);
40 int d_68020(void);
41 int d_68030(void);
42 int d_68040(void);
43 int d_68060(void);
44 int d_68881(void);
45 int d_68882(void);
46 int d_56001(void);
47 int d_gpu(void);
48 int d_dsp(void);
49
50 #endif // __DIRECT_H__
51