X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=sect.h;h=3f6f28edfc55f1d7348935927fe8df2debeb0fae;hb=8a5d76b0e6c7433cdbdf3d612da5c209516cb594;hp=bae68ebecaaf1ef4ce986c39bf9282f5a18316a2;hpb=29b32d134bc12831a8ddd098bf9aeeda26dcfe7c;p=rmac diff --git a/sect.h b/sect.h index bae68eb..3f6f28e 100644 --- a/sect.h +++ b/sect.h @@ -139,6 +139,7 @@ SECT { #define FPU_68881 1 #define FPU_68882 2 #define FPU_68040 4 +#define FPU_68060 8 // Helper macros to test for active CPU #define CHECK00 if (activecpu == CPU_68000) return error(unsupport) @@ -151,7 +152,7 @@ SECT { #define CHECKNO30 if (activecpu != CPU_68030) return error(unsupport) #define CHECKNO40 if (activecpu != CPU_68040) return error(unsupport) #define CHECKNO60 if (activecpu != CPU_68060) return error(unsupport) - +#define CHECKNOFPU if (!activefpu) return error(unsupport) // Globals, external etc extern uint32_t sloc;