diff options
-rw-r--r-- | Lesson_26/README.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Lesson_26/README.md b/Lesson_26/README.md index 28e8f1e..1e6163b 100644 --- a/Lesson_26/README.md +++ b/Lesson_26/README.md @@ -1,3 +1,15 @@ +As you remember the entry point for our UEFI programs is: + +``` +EFI_STATUS +EFIAPI +UefiMain ( + IN EFI_HANDLE ImageHandle, + IN EFI_SYSTEM_TABLE *SystemTable + ) +``` + +The passed structure `EFI_SYSTEM_TABLE` looks like this according to UEFI specification: ``` typedef struct { |