mirror of
https://github.com/limine-bootloader/limine
synced 2025-02-08 21:24:19 +03:00
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
section .text
|
|
|
|
extern lapic_eoi
|
|
|
|
global dummy_isr
|
|
dummy_isr:
|
|
pusha
|
|
call lapic_eoi
|
|
popa
|
|
iretd
|
|
|
|
section .note.GNU-stack noalloc noexec nowrite progbits
|