diff --git a/src/main.d b/src/main.d index e84be5e..4ef2521 100644 --- a/src/main.d +++ b/src/main.d @@ -9,6 +9,8 @@ void write_string(EFI_SYSTEM_TABLE * st, const(wchar)[] str) extern (C) EFI_STATUS efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE * st) { + st.ConOut.ClearScreen(st.ConOut); + write_string(st, "Hello, D UEFI world!\r\n"w); write_string(st, "Press any key...\r\n"w);