summaryrefslogtreecommitdiffstats
path: root/debugging_demo/MemtestEfi.c
diff options
context:
space:
mode:
Diffstat (limited to 'debugging_demo/MemtestEfi.c')
-rw-r--r--debugging_demo/MemtestEfi.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/debugging_demo/MemtestEfi.c b/debugging_demo/MemtestEfi.c
new file mode 100644
index 0000000..4bd7fa6
--- /dev/null
+++ b/debugging_demo/MemtestEfi.c
@@ -0,0 +1,21 @@
+
+#include "Uefi.h"
+#include "Library/UefiLib.h"
+#include "Library/UefiApplicationEntryPoint.h"
+// #include "Guid/FileSystemInfo.h"
+// #include "Protocol/LoadedImage.h"
+
+
+EFI_STATUS
+EFIAPI
+UefiMain (
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+ )
+{
+
+ SystemTable->ConOut->OutputString(SystemTable->ConOut, (CHAR16 *) "Hello World.");
+
+ return EFI_SUCCESS;
+}
+