diff --git a/src/kernel/interrupts.s b/src/kernel/interrupts.s index 9e01b2b..f9cf9b1 100644 --- a/src/kernel/interrupts.s +++ b/src/kernel/interrupts.s @@ -92,8 +92,8 @@ irq_handler_prelude: global %1 %1: cli - push byte 0 - push byte %2 + push 0 + push %2 jmp isr_handler_prelude %endmacro @@ -101,7 +101,7 @@ irq_handler_prelude: global %1 %1: cli - push byte %2 + push %2 jmp isr_handler_prelude %endmacro @@ -109,8 +109,8 @@ irq_handler_prelude: global %1 %1: cli - push byte 0 - push byte %2 + push 0 + push %2 jmp irq_handler_prelude %endmacro