summaryrefslogtreecommitdiffstats
path: root/memtestEDK/Memtest/SingleComponents/TestConfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'memtestEDK/Memtest/SingleComponents/TestConfig.c')
-rw-r--r--memtestEDK/Memtest/SingleComponents/TestConfig.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/memtestEDK/Memtest/SingleComponents/TestConfig.c b/memtestEDK/Memtest/SingleComponents/TestConfig.c
new file mode 100644
index 0000000..cfd4b6a
--- /dev/null
+++ b/memtestEDK/Memtest/SingleComponents/TestConfig.c
@@ -0,0 +1,25 @@
+
+#include <Uefi.h>
+#include <Library/UefiLib.h>
+#include <Library/UefiApplicationEntryPoint.h>
+
+#include "config.h"
+
+extern void popup();
+
+EFI_STATUS
+EFIAPI
+UefiMain (
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+ )
+{
+
+ Print(L"Test for config\n\n");
+
+ popup();
+
+ Print(L"Test finished.\n");
+
+ return EFI_SUCCESS;
+} \ No newline at end of file