From 71d47662812acedf1e2a076e792138b9b2fa844e Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Wed, 27 May 2015 01:07:05 +0000 Subject: [PATCH] [NTVDM] Now that the Fast486 FPU is feature-complete, tell programs that we have a builtin FPU. (This commit may cause regressions if there are bugs in the FPU) svn path=/trunk/; revision=67934 --- reactos/subsystems/mvdm/ntvdm/bios/bios.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsystems/mvdm/ntvdm/bios/bios.h b/reactos/subsystems/mvdm/ntvdm/bios/bios.h index be9ef20d176..cbbd1518f14 100644 --- a/reactos/subsystems/mvdm/ntvdm/bios/bios.h +++ b/reactos/subsystems/mvdm/ntvdm/bios/bios.h @@ -33,7 +33,7 @@ // by all applications (e.g. QBasic runtime would use the native FPU if the bit // is set, but then subsequently fails, unless the FPU bit is unset in that case // QBasic uses its emulated FPU). -#define BIOS_EQUIPMENT_LIST 0x2C // Bit1: FPU, Bit 2: Mouse +#define BIOS_EQUIPMENT_LIST 0x2E // Bit1: FPU, Bit 2: Mouse #pragma pack(push, 1)