[HALX86] Re-enable HalpBiosDisplayReset() for x64: it actually supports display reset (#5513)

CORE-18185
Addendum to commit 215148267e

Everything that's needed (the x86 emulator with x86BiosCall) is implemented.
Fixes screen cleaning when bootvid takes over the VGA display.
This commit is contained in:
Hermès Bélusca-Maïto
2025-11-18 22:07:18 +01:00
parent 94abe8328f
commit 1b89086bae

View File

@@ -499,7 +499,6 @@ BOOLEAN
NTAPI
HalpBiosDisplayReset(VOID)
{
#if 0
X86_BIOS_REGISTERS Registers;
ULONG OldEflags;
BOOLEAN Success;
@@ -515,9 +514,5 @@ HalpBiosDisplayReset(VOID)
/* Restore previous flags */
__writeeflags(OldEflags);
return Success;
#else
/* This x64 HAL does NOT currently handle display reset (TODO) */
return FALSE;
#endif
}
#endif // _M_AMD64