From 236493f9cb378c462b48c07b602cd09953d00776 Mon Sep 17 00:00:00 2001 From: bemxio Date: Sun, 6 Aug 2023 00:41:13 +0200 Subject: [PATCH] fix the order of the includes --- src/bootloader.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootloader.asm b/src/bootloader.asm index 47d2fcf..b3efd97 100644 --- a/src/bootloader.asm +++ b/src/bootloader.asm @@ -44,8 +44,8 @@ pit_handler: ; includes %include "./src/print.asm" %include "./src/print_hex.asm" -%include "./src/disk.asm" %include "./src/pit.asm" +%include "./src/disk.asm" ; pad the rest of the sector with null bytes times 510 - ($ - $$) db 0