]> Shamusworld >> Repos - rmac/blobdiff - direct.h
Add support for 64-bit evaluations.
[rmac] / direct.h
index 7b4625a11bb64a5d488900b835d2a3835ed62b39..ea1aa231666fa83fac2d90c869a97abf81c8b32f 100644 (file)
--- a/direct.h
+++ b/direct.h
@@ -1,7 +1,7 @@
 //
-// RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
+// RMAC - Reboot's Macro Assembler for all Atari computers
 // DIRECT.H - Directive Handling
-// Copyright (C) 199x Landon Dyer, 2017 Reboot and Friends
+// Copyright (C) 199x Landon Dyer, 2011-2017 Reboot and Friends
 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
 // Source utilised with the kind permission of Landon Dyer
 //
 extern TOKEN exprbuf[];
 extern SYM * symbolPtr[];
 extern int (* dirtab[])();
-extern char strtoa8[];
+extern int largestAlign[];
 
 // Exported functions
 void auto_even(void);
-int dep_block(VALUE, WORD, VALUE, WORD, TOKEN *);
+int dep_block(uint32_t, WORD, uint32_t, WORD, TOKEN *);
 int eject(void);
-int abs_expr(VALUE *);
+int abs_expr(uint64_t *);
 int symlist(int(*)());
 
 int d_even(void);
@@ -30,5 +30,9 @@ int d_phrase(void);
 int d_dphrase(void);
 int d_qphrase(void);
 
+int d_if(void);
+int d_else(void);
+int d_endif(void);
+
 #endif // __DIRECT_H__