aboutsummaryrefslogtreecommitdiffstats
path: root/Lesson_21/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2021-06-28 16:51:09 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2021-06-28 16:51:09 +0300
commit61f0373a3df04323ef130b7d3b610c7cb6504991 (patch)
treed20c76569b4d049350d1494cbe16c499479d7264 /Lesson_21/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c
parent52f83512d1ea8e43d7590f7e761302db13932a76 (diff)
downloadUEFI-Lessons-61f0373a3df04323ef130b7d3b610c7cb6504991.tar.gz
UEFI-Lessons-61f0373a3df04323ef130b7d3b610c7cb6504991.tar.bz2
UEFI-Lessons-61f0373a3df04323ef130b7d3b610c7cb6504991.zip
Add lesson 21
Diffstat (limited to 'Lesson_21/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c')
-rw-r--r--Lesson_21/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/Lesson_21/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c b/Lesson_21/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c
new file mode 100644
index 0000000..b13aa6c
--- /dev/null
+++ b/Lesson_21/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c
@@ -0,0 +1,14 @@
+#include <Library/UefiBootServicesTableLib.h>
+#include <Library/UefiLib.h>
+
+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;
+}