aboutsummaryrefslogtreecommitdiffstats
path: root/Lesson_21/UefiLessonsPkg/PCDLesson/PCDLesson.c
diff options
context:
space:
mode:
Diffstat (limited to 'Lesson_21/UefiLessonsPkg/PCDLesson/PCDLesson.c')
-rw-r--r--Lesson_21/UefiLessonsPkg/PCDLesson/PCDLesson.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/Lesson_21/UefiLessonsPkg/PCDLesson/PCDLesson.c b/Lesson_21/UefiLessonsPkg/PCDLesson/PCDLesson.c
deleted file mode 100644
index 3c88a9b..0000000
--- a/Lesson_21/UefiLessonsPkg/PCDLesson/PCDLesson.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <Library/UefiBootServicesTableLib.h>
-#include <Library/UefiLib.h>
-
-#include <Library/PcdLib.h>
-
-EFI_STATUS
-EFIAPI
-UefiMain (
- IN EFI_HANDLE ImageHandle,
- IN EFI_SYSTEM_TABLE *SystemTable
- )
-{
- Print(L"PcdMyVar32=%d\n", FixedPcdGet32(PcdMyVar32));
- Print(L"PcdMyVar32_1=%d\n", FixedPcdGet32(PcdMyVar32_1));
- Print(L"PcdMyVar32_2=%d\n", FixedPcdGet32(PcdMyVar32_2));
- return EFI_SUCCESS;
-}