1
0
geforkt von xt-sys/exectos

Introduce legacy VGA text mode support

Dieser Commit ist enthalten in:
2025-10-15 20:49:17 +02:00
Ursprung 9bf867af95
Commit 13a9d4c522
4 geänderte Dateien mit 222 neuen und 0 gelöschten Zeilen

Datei anzeigen

@@ -10,6 +10,18 @@
#include <xtldr.hh>
/* Legacy BIOS cursor X position */
USHORT BiosUtils::CursorX = 0;
/* Legacy BIOS cursor Y position */
USHORT BiosUtils::CursorY = 0;
/* Legacy BIOS screen height */
CONST USHORT BiosUtils::VgaHeight = 25;
/* Legacy BIOS screen width */
CONST USHORT BiosUtils::VgaWidth = 80;
/* XT Boot Loader menu list */
PLIST_ENTRY Configuration::BootMenuList = NULLPTR;