X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=mark.h;h=c408b14c0307103d8da010cd54403435147129e6;hp=3b2aa539efc76ad4202c2b66fb5a9d5e2cd89051;hb=c38505ee4b2a0de59926107e52fb8bb84041a0e4;hpb=582df8950c285e1746d0c4a9e3ead6545c962dc8 diff --git a/mark.h b/mark.h index 3b2aa53..c408b14 100644 --- a/mark.h +++ b/mark.h @@ -1,7 +1,7 @@ // // RMAC - Reboot's Macro Assembler for all Atari computers // MARK.H - A record of things that are defined relative to any of the sections -// Copyright (C) 199x Landon Dyer, 2011-2017 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2011-2020 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -26,10 +26,15 @@ MCHUNK { #define MWORD 0x0000 // Marked word #define MLONG 0x0100 // Marked long +#define MQUAD 0x0400 // Marked quad +//This will have to be defined eventually. Might have to overhaul the mark +//system as 8-bits doesn't seem to be enough, at least for a bitfield (which it +//might not have to be, in which case it would be big enough...) +//#define MQUAD 0x // Marked quad word (TODO: merge with MDOUBLE?) #define MMOVEI 0x0200 // Mark RISC MOVEI instruction -#define MDOUBLE 0x0400 // Marked double float -#define MEXTEND 0x0800 // Marked extended float -#define MSINGLE 0x0880 // Marked single float (TODO: merge with MLONG?) +//#define MDOUBLE 0x0400 // Marked double float +//#define MEXTEND 0x0800 // Marked extended float +//#define MSINGLE 0x0880 // Marked single float (TODO: merge with MLONG?) #define MGLOBAL 0x0800 // Mark contains global #define MPCREL 0x1000 // Mark is PC-relative #define MCHEND 0x2000 // Indicates end of mark chunk