From d0cc477ee23e19be08a600d3b9d9a238dcb39f32 Mon Sep 17 00:00:00 2001 From: Konstantin Aladyshev Date: Tue, 22 Jun 2021 20:43:50 +0300 Subject: Add lesson 13 --- Lesson_13/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Lesson_13/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c (limited to 'Lesson_13/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c') diff --git a/Lesson_13/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c b/Lesson_13/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c new file mode 100644 index 0000000..b13aa6c --- /dev/null +++ b/Lesson_13/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c @@ -0,0 +1,14 @@ +#include +#include + +INTN EFIAPI ShellAppMain(IN UINTN Argc, IN CHAR16 **Argv) +{ +// SystemTable->ConOut->OutputString(SystemTable->ConOut, L"Hello World!\n"); + gST->ConOut->OutputString(gST->ConOut, L"Hello again!\n"); + Print(L"Bye!\n"); + + for (UINTN i=Argc; i>0; i--) { + Print(L"Arg[%d]=%s\n", Argc-i, Argv[Argc-i]); + } + return 0; +} -- cgit v1.2.3-18-g5258