X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.h;h=3c884dc5a4b34b03cbbd531b8c15d9a4306910ab;hp=27219e54f6198f7433b58feb4d04afe0606f4aaf;hb=f3c7d186a15b89c39e360b9cc89545a0d24bd6a4;hpb=5f23454f7155f0c77ea1bede3f9e60b39da99fa8 diff --git a/direct.h b/direct.h index 27219e5..3c884dc 100644 --- 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 // @@ -10,17 +10,19 @@ #define __DIRECT_H__ #include "rmac.h" +#include "token.h" // Exported variables -extern TOKEN exprbuf[]; +extern TOKENPTR exprbuf; extern SYM * symbolPtr[]; extern int (* dirtab[])(); +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, TOKENPTR); int eject(void); -int abs_expr(VALUE *); +int abs_expr(uint64_t *); int symlist(int(*)()); int d_even(void); @@ -29,5 +31,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__