]> Shamusworld >> Repos - rmac/blobdiff - expr.h
Add support for 64-bit evaluations.
[rmac] / expr.h
diff --git a/expr.h b/expr.h
index ad83d2807d67eca0827dca5bb504e7a2258b85ee..f03ca1e6f06130d78438ef5ec04506342545947b 100644 (file)
--- a/expr.h
+++ b/expr.h
@@ -1,9 +1,9 @@
 //
-// RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
+// RMAC - Reboot's Macro Assembler for all Atari computers
 // EXPR.H - Expression Analyzer
-// Copyright (C) 199x Landon Dyer, 2011 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
+// Source utilised with the kind permission of Landon Dyer
 //
 
 #ifndef __EXPR_H__
 #define XOR          11                // Bitwise xor: ^
 #define OR           12                // Bitwise or: |
 
-// Prototypes
+// Exported functions
 void InitExpression(void);
 int expr1(void);
 int expr2(void);
-int expr(TOKEN *, VALUE *, WORD *, SYM **);
-int evexpr(TOKEN *, VALUE *, WORD *, SYM **);
+int expr(TOKEN *, uint64_t *, WORD *, SYM **);
+int evexpr(TOKEN *, uint64_t *, WORD *, SYM **);
 
 #endif // __EXPR_H__