X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.h;h=55959b31017001c7077aa0ab43d40d3d4c8aaf81;hp=0f9615edd0ea8092a3b7a99028833f20df438b3c;hb=bdbf34766f4d074a5933eb1326fe4ce03d249e10;hpb=cfd001aea60f54e49d9beae0f941c513f45c202b diff --git a/direct.h b/direct.h index 0f9615e..55959b3 100644 --- a/direct.h +++ b/direct.h @@ -1,7 +1,7 @@ // // RMAC - Reboot's Macro Assembler for all Atari computers // DIRECT.H - Directive Handling -// Copyright (C) 199x Landon Dyer, 2011-2017 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2011-2019 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -10,6 +10,7 @@ #define __DIRECT_H__ #include "rmac.h" +#include "token.h" // Exported variables extern TOKEN exprbuf[]; @@ -21,7 +22,7 @@ extern int largestAlign[]; void auto_even(void); int dep_block(uint32_t, WORD, uint32_t, WORD, TOKEN *); int eject(void); -int abs_expr(uint32_t *); +int abs_expr(uint64_t *); int symlist(int(*)()); int d_even(void); @@ -34,5 +35,17 @@ int d_if(void); int d_else(void); int d_endif(void); +int d_68000(void); +int d_68000(void); +int d_68020(void); +int d_68030(void); +int d_68040(void); +int d_68060(void); +int d_68881(void); +int d_68882(void); +int d_56001(void); +int d_gpu(void); +int d_dsp(void); + #endif // __DIRECT_H__