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
parent a0e7e3b2c4
commit cd03f4fbca
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

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