From 9d89eecb980b52ef61c1374f0661d2591c51cf8a Mon Sep 17 00:00:00 2001 From: Konstantin Aladyshev Date: Thu, 24 Jun 2021 14:43:14 +0300 Subject: Add lesson 16 --- Lesson_16/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Lesson_16/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c (limited to 'Lesson_16/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c') diff --git a/Lesson_16/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c b/Lesson_16/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c new file mode 100644 index 0000000..b13aa6c --- /dev/null +++ b/Lesson_16/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