XTLDR Rewrite #7

Merged
belliash merged 184 commits from xtldr_rewrite into master 2024-01-09 18:51:04 +01:00
Showing only changes of commit cd03f4fbca - Show all commits

View File

@ -13,4 +13,12 @@ XTCDECL
VOID
BlStartLoaderShell()
{
/* Clear screen and enable cursor */
BlSetConsoleAttributes(EFI_TEXT_BGCOLOR_BLACK | EFI_TEXT_FGCOLOR_LIGHTGRAY);
BlClearConsoleScreen();
BlEnableConsoleCursor();
/* Print prompt */
BlConsolePrint(L"XTLDR> ");
for(;;);
}