Clear screen on startup

This commit is contained in:
Josh Holtrop 2022-03-09 16:47:02 -05:00
parent 6b10f3f4d9
commit fc2efa2474

2
main.c
View File

@ -118,6 +118,8 @@ efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE * system_table)
g_system_table = system_table;
system_table->ConOut->ClearScreen(system_table->ConOut);
write_string(L"My first EFI loader\r\n");
status = system_table->ConIn->Reset(system_table->ConIn, FALSE);