Spend a few more bytes on 'push' instruction to clear warnings

This commit is contained in:
Justin C. Miller
2018-05-05 11:26:13 -07:00
parent d7506b6aaf
commit 8a00b9c77d

View File

@@ -92,8 +92,8 @@ irq_handler_prelude:
global %1 global %1
%1: %1:
cli cli
push byte 0 push 0
push byte %2 push %2
jmp isr_handler_prelude jmp isr_handler_prelude
%endmacro %endmacro
@@ -101,7 +101,7 @@ irq_handler_prelude:
global %1 global %1
%1: %1:
cli cli
push byte %2 push %2
jmp isr_handler_prelude jmp isr_handler_prelude
%endmacro %endmacro
@@ -109,8 +109,8 @@ irq_handler_prelude:
global %1 global %1
%1: %1:
cli cli
push byte 0 push 0
push byte %2 push %2
jmp irq_handler_prelude jmp irq_handler_prelude
%endmacro %endmacro