From 3ca547643cd85c2bf6a6c66fbd9019bdc5099742 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Tue, 27 May 2003 11:58:46 +0000 Subject: [PATCH] Removed helper for fpu instructions Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1015 --- include/fpu.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/fpu.h b/include/fpu.h index d181a2ac..a1bfb2e5 100644 --- a/include/fpu.h +++ b/include/fpu.h @@ -38,13 +38,4 @@ void FPU_ESC6_EA(Bitu func,PhysPt ea); void FPU_ESC7_Normal(Bitu rm); void FPU_ESC7_EA(Bitu func,PhysPt ea); -#define FPU_ESC(code) { \ - Bit8u rm=Fetchb(); \ - if (rm>=0xc0) { \ - FPU_ESC ## code ## _Normal(rm); \ - } else { \ - GetEAa;FPU_ESC ## code ## _EA(rm,eaa); \ - } \ -} - #endif