1
0
Fork 0

Removed helper for fpu instructions

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1015
This commit is contained in:
Sjoerd van der Berg 2003-05-27 11:58:46 +00:00
parent 999c5b36ec
commit 3ca547643c

View file

@ -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