python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
UEFI ARM64 Synchronous Exception
I am developing an UEFI application for ARM64 (ARMv8-A) and I have come across the issue: "Synchronous Exceptions at 0xFF1BB0B8."
This value (0x0FF1BB0B8) is exception link register (ELR). E...
Mark
Votes: 0
Answers: 1
How to utilize ArpDxe driver in UEFI application
I'm trying to get ARP table with ArpDxe driver in UEFI application. Here is my code:
EFI_ARP_PROTOCOL* Arp;
EFI_STATUS Status;
UINT32 Count;
UINT32 Length;
EFI_ARP_FIND_DATA* Entries;
Status = gB...
Wen-Hsin Hsieh
Votes: 0
Answers: 1
Linking EFI application with LLVM on MacOS
I'm attempting to cross-compile and link a very simple EFI application that is using the EFI headers from the Zircon kernel. Despite my best efforts, I am unable to link a working PE executable under ...
Human-Compiler
Votes: 0
Answers: 1
GPT FileSystem after exiting boot services in C/C++
I am creating an operating system and have strugled to find a way to implement a filesystem into it for the past several months. I can read files in boot services but after exiting boot services in UE...

IlcIliaDev
Votes: 0
Answers: 1