mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-04 14:11:58 +03:00
9 lines
114 B
Plaintext
9 lines
114 B
Plaintext
section .text
|
|
|
|
global efi_main
|
|
extern uefi_entry
|
|
efi_main:
|
|
xor eax, eax
|
|
mov [rsp], rax
|
|
jmp uefi_entry
|