X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=rmac.h;h=e2e677f63346d778518553b287818bbb27933483;hp=5c562043ad10412e0911a32444c92c3a0f9e4497;hb=9207a38ed4a09c60a1e9b9995a92bcd4580e3662;hpb=ff2052bcaa1428a33a202822a81a6f9b8e567ef4 diff --git a/rmac.h b/rmac.h index 5c56204..e2e677f 100644 --- a/rmac.h +++ b/rmac.h @@ -153,8 +153,8 @@ #define SPACE ' ' // ASCII space #define SLASHCHAR '/' #define SLASHSTRING "/" -#define VALUE LONG // Assembler value -#define TOKEN LONG // Assembler token +#define VALUE uint32_t // Assembler value +#define TOKEN uint32_t // Assembler token #define FNSIZ 128 // Maximum size of a filename #define OK 0 // OK return #define DEBUG if (debug) // Debug conditional @@ -168,6 +168,7 @@ #define CONST 'a' // CONST #define ACONST 'A' // ACONST #define STRING 'b' // STRING
+#define STRINGA8 'S' // Atari 800 internal STRING
#define SYMBOL 'c' // SYMBOL
#define EOL 'e' // End of line #define TKEOF 'f' // End of file (or macro)