summaryrefslogtreecommitdiffstats
path: root/efi_memtest/MemtestEfi.c
diff options
context:
space:
mode:
authorRegina König2020-08-04 00:04:50 +0200
committerRegina König2020-08-04 00:04:50 +0200
commitd814cd16b8c5c1c0d9e2837eae5364085eaba833 (patch)
treebd4f4df3fc4df313caede2c9ae8012ac719c53c0 /efi_memtest/MemtestEfi.c
parentmoving display function to bios/ or efi/ respectively (diff)
downloadmemtest86-d814cd16b8c5c1c0d9e2837eae5364085eaba833.tar.gz
memtest86-d814cd16b8c5c1c0d9e2837eae5364085eaba833.tar.xz
memtest86-d814cd16b8c5c1c0d9e2837eae5364085eaba833.zip
TextOutput.c set foreground/background color, clears screen and sets display mode
Diffstat (limited to 'efi_memtest/MemtestEfi.c')
-rw-r--r--efi_memtest/MemtestEfi.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/efi_memtest/MemtestEfi.c b/efi_memtest/MemtestEfi.c
index 06722f4..535b799 100644
--- a/efi_memtest/MemtestEfi.c
+++ b/efi_memtest/MemtestEfi.c
@@ -6,7 +6,6 @@
#include "memtest86+/efi/main.h"
-
EFI_STATUS
EFIAPI
UefiMain (
@@ -14,11 +13,16 @@ UefiMain (
IN EFI_SYSTEM_TABLE *SystemTable
)
{
+
char world[] = "jhgh";
Print(L"Test %a\n\0", world);
Print(L"MemtestEfi started\n");
test_start();
+ Print(L"Test finished!\n");
+ while(1) {}
+
+
return EFI_SUCCESS;
}