Last active
March 23, 2020 21:26
-
-
Save kant2002/068f8281df57e240c24ba68afb3b4caf to your computer and use it in GitHub Desktop.
UEFI in CoreRT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public unsafe static class EfiRuntimeHost | |
{ | |
public static EFI_SYSTEM_TABLE* SystemTable { get; private set; } | |
public static void Initialize(EFI_SYSTEM_TABLE* systemTable) | |
{ | |
SystemTable = systemTable; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment