Files
Espresso/isr128.asm
2025-05-20 20:29:10 -05:00

11 lines
188 B
NASM

[bits 32]
global isr128
extern isr_handler
extern common_isr_stub
isr128:
cli
push dword 0 ; No error code
push dword 128 ; Interrupt number
jmp common_isr_stub