[HAL] Add missing I/O port to int 10 BIOS emulator

This commit is contained in:
Timo Kreuzer 2022-07-23 17:07:00 +02:00
parent 74014e74c0
commit f8b6cc249e
1 changed files with 7 additions and 1 deletions

View File

@ -321,9 +321,15 @@ ValidatePort(
case 0x3C9: return (Size == 1);
case 0x3DA: return (Size == 1) && !IsWrite;
// CHECKME!
// OVMF debug messages used by VBox / QEMU
// https://www.virtualbox.org/svn/vbox/trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/README
case 0x402: return (Size == 1) && IsWrite;
// BOCHS VBE: https://forum.osdev.org/viewtopic.php?f=1&t=14639
case 0x1CE: return (Size == 1) && IsWrite;
case 0x1CF: return (Size == 1);
// CHECKME!
case 0x3B6: return (Size <= 2);
}