mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-03 05:32:00 +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 [esp], eax
|
|
jmp uefi_entry
|