rulimine/common/sys/dummy_isr.asm_x86_64

29 lines
368 B
Plaintext
Raw Permalink Normal View History

2023-06-20 14:24:49 +03:00
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