]> Shamusworld >> Repos - rmac/blob - direct.h
Added -l* to enable listing without pagination. Fix bug where a wrong malloc would...
[rmac] / direct.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // DIRECT.H - Directive Handling
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 __DIRECT_H__
10 #define __DIRECT_H__
11
12 #include "rmac.h"
13
14 // Exported variables
15 extern TOKEN exprbuf[];
16 extern SYM * symbolPtr[];
17 extern int (* dirtab[])();
18
19 // Exported functions
20 void auto_even(void);
21 int dep_block(VALUE, WORD, VALUE, WORD, TOKEN *);
22 int eject(void);
23 int abs_expr(VALUE *);
24 int symlist(int(*)());
25
26 int d_even(void);
27 int d_long(void);
28 int d_phrase(void);
29 int d_dphrase(void);
30 int d_qphrase(void);
31
32 #endif // __DIRECT_H__
33