X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=sect.h;h=3f6f28edfc55f1d7348935927fe8df2debeb0fae;hp=bae68ebecaaf1ef4ce986c39bf9282f5a18316a2;hb=0c583009c5819e1774b24ef3cb59dde468fd3f60;hpb=2e93724df4f2f5ba11bf957b6f2bb72c8b47137d 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;