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
|