diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-06-23 13:13:00 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-06-23 13:36:19 +0300 |
commit | f5a4ffca576108c338306d314628861b7e471f2f (patch) | |
tree | dca3bb139169acd9e26b2b36e14e90b0a4109565 /Lesson_14/UefiLessonsPkg/HelloWorld/HelloWorld.c | |
parent | f12b3ee2debdcc7a673b6612fd16a5c8dcc0e786 (diff) | |
download | UEFI-Lessons-f5a4ffca576108c338306d314628861b7e471f2f.tar.gz UEFI-Lessons-f5a4ffca576108c338306d314628861b7e471f2f.tar.bz2 UEFI-Lessons-f5a4ffca576108c338306d314628861b7e471f2f.zip |
Add lesson 14
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'Lesson_14/UefiLessonsPkg/HelloWorld/HelloWorld.c')
-rw-r--r-- | Lesson_14/UefiLessonsPkg/HelloWorld/HelloWorld.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Lesson_14/UefiLessonsPkg/HelloWorld/HelloWorld.c b/Lesson_14/UefiLessonsPkg/HelloWorld/HelloWorld.c new file mode 100644 index 0000000..1f05899 --- /dev/null +++ b/Lesson_14/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; +} |