aboutsummaryrefslogtreecommitdiffstats
path: root/Lesson_12/UefiLessonsPkg/HelloWorld/HelloWorld.c
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2021-06-18 00:21:31 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2021-06-18 00:21:31 +0300
commit722c0444a133c4b7f0a3ce49d6990ecaf14cdcf4 (patch)
treeeae9065064213aeed3ec92e2e7509e7a4a7e93c3 /Lesson_12/UefiLessonsPkg/HelloWorld/HelloWorld.c
parentb3280f9a61cbace82624ecc28fe411a71af461f5 (diff)
downloadUEFI-Lessons-722c0444a133c4b7f0a3ce49d6990ecaf14cdcf4.tar.gz
UEFI-Lessons-722c0444a133c4b7f0a3ce49d6990ecaf14cdcf4.tar.bz2
UEFI-Lessons-722c0444a133c4b7f0a3ce49d6990ecaf14cdcf4.zip
Add lesson 12
Diffstat (limited to 'Lesson_12/UefiLessonsPkg/HelloWorld/HelloWorld.c')
-rw-r--r--Lesson_12/UefiLessonsPkg/HelloWorld/HelloWorld.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lesson_12/UefiLessonsPkg/HelloWorld/HelloWorld.c b/Lesson_12/UefiLessonsPkg/HelloWorld/HelloWorld.c
new file mode 100644
index 0000000..1f05899
--- /dev/null
+++ b/Lesson_12/UefiLessonsPkg/HelloWorld/HelloWorld.c
@@ -0,0 +1,15 @@
+#include <Library/UefiBootServicesTableLib.h>
+#include <Library/UefiLib.h>
+
+EFI_STATUS
+EFIAPI
+UefiMain (
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+ )
+{
+ SystemTable->ConOut->OutputString(SystemTable->ConOut, L"Hello World!\n");
+ gST->ConOut->OutputString(gST->ConOut, L"Hello again!\n");
+ Print(L"Bye!\n");
+ return EFI_SUCCESS;
+}