Reactos

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

CORE-18185
Addendum to commit 215148267e7bad7

Everything that's needed (the x86 emulator with x86BiosCall) is implemented.
Fixes screen cleaning when bootvid takes over the VGA display.

-5
-5
hal/halx86/generic/x86bios.c
··· 499 499 NTAPI 500 500 HalpBiosDisplayReset(VOID) 501 501 { 502 - #if 0 503 502 X86_BIOS_REGISTERS Registers; 504 503 ULONG OldEflags; 505 504 BOOLEAN Success; ··· 515 514 /* Restore previous flags */ 516 515 __writeeflags(OldEflags); 517 516 return Success; 518 - #else 519 - /* This x64 HAL does NOT currently handle display reset (TODO) */ 520 - return FALSE; 521 - #endif 522 517 } 523 518 #endif // _M_AMD64