mirror of
https://github.com/limine-bootloader/limine
synced 2024-11-28 11:23:09 +03:00
11 lines
171 B
Plaintext
11 lines
171 B
Plaintext
section .text
|
|
|
|
global efi_main
|
|
extern uefi_entry
|
|
efi_main:
|
|
xor eax, eax
|
|
mov [rsp], rax
|
|
jmp uefi_entry
|
|
|
|
section .note.GNU-stack noalloc noexec nowrite progbits
|