From f92ccd087e23c0e3c141b9bcbb85f3f72e0e6817 Mon Sep 17 00:00:00 2001 From: Konstantin Aladyshev Date: Wed, 23 Jun 2021 18:31:23 +0300 Subject: Add lesson 15 Signed-off-by: Konstantin Aladyshev --- Lesson_15/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Lesson_15/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c (limited to 'Lesson_15/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c') diff --git a/Lesson_15/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c b/Lesson_15/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c new file mode 100644 index 0000000..b13aa6c --- /dev/null +++ b/Lesson_15/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