From 706382780b5226bde3d0846054490fe3c205de4a Mon Sep 17 00:00:00 2001 From: iximeow Date: Wed, 25 Mar 2015 23:35:10 -0700 Subject: Bootloader doesn't need to pad to 512 bytes anymore --- bootloader.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootloader.asm b/bootloader.asm index cf8ccb4..c9ed98b 100644 --- a/bootloader.asm +++ b/bootloader.asm @@ -111,6 +111,6 @@ LBA_DISK_READ_PACKET: dd 1 ; lba to read from dd 0 ; for extended lba adresses (not really used here) - times 510-($-$$) db 0 - db 0x55 - db 0xAA +; times 510-($-$$) db 0 +; db 0x55 +; db 0xAA -- cgit v1.1