diff options
author | iximeow <me@iximeow.net> | 2015-03-25 23:35:10 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2015-09-28 03:36:21 -0700 |
commit | 706382780b5226bde3d0846054490fe3c205de4a (patch) | |
tree | c2501f97c0008f9a2fb70097dbc4cab161fda0a5 | |
parent | 04c9be42368e5571fcec97f08a30a52a84bd1299 (diff) |
Bootloader doesn't need to pad to 512 bytes anymore
-rw-r--r-- | bootloader.asm | 6 |
1 files 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 |