From 8a00b9c77d85b4dc1546adb0e219bd3e3fc70391 Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Sat, 5 May 2018 11:26:13 -0700 Subject: [PATCH] Spend a few more bytes on 'push' instruction to clear warnings --- src/kernel/interrupts.s | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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