Skip to content

Instantly share code, notes, and snippets.

@kant2002
Last active March 23, 2020 21:26
Show Gist options
  • Save kant2002/068f8281df57e240c24ba68afb3b4caf to your computer and use it in GitHub Desktop.
Save kant2002/068f8281df57e240c24ba68afb3b4caf to your computer and use it in GitHub Desktop.
UEFI in CoreRT
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