ZOVboot/limine/common/sys/dummy_isr.asm_x86_64
2026-03-13 14:19:46 +00:00

28 lines
368 B
Text

section .text
extern lapic_eoi
global dummy_isr
dummy_isr:
push rax
push rcx
push rdx
push rsi
push rdi
push r8
push r9
push r10
push r11
call lapic_eoi
pop r11
pop r10
pop r9
pop r8
pop rdi
pop rsi
pop rdx
pop rcx
pop rax
iretq
section .note.GNU-stack noalloc noexec nowrite progbits