Log warning to console when not using full FPU 80-bit precision

This commit is contained in:
Kirk Klobe 2023-12-18 12:33:34 -06:00 committed by John Novak
parent ccaf4a852a
commit 3311704199

View file

@ -651,6 +651,9 @@ void FPU_ESC7_Normal(Bitu rm) {
void FPU_Init(Section*) {
#if !C_FPU_X86
LOG_WARNING("FPU: Using reduced-precision floating-point emulation");
#endif
FPU_FINIT();
}