Print prompt
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 49s
Builds / ExectOS (i686) (push) Successful in 24s

This commit is contained in:
Rafal Kupiec 2024-01-07 12:01:23 +01:00
förälder a0e7e3b2c4
incheckning cd03f4fbca
Signerad av: belliash
GPG-nyckel ID: 4E829243E0CFE6B4

Visa fil

@ -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(;;);
}