Remove excess alignment

This commit is contained in:
Jeremy Soller
2020-02-05 21:32:08 -07:00
parent 0a3a08d6ff
commit 1b02aebde2
+3 -4
View File
@@ -10,7 +10,7 @@ startup_start:
%ifdef ARCH_x86_64
%include "startup-x86_64.asm"
%endif
align 512, db 0
align BLOCK_SIZE, db 0
startup_end:
%ifdef KERNEL
@@ -18,14 +18,13 @@ startup_end:
%defstr KERNEL_STR %[KERNEL]
incbin KERNEL_STR
.end:
align 512, db 0
%else
align BLOCK_SIZE, db 0
%else
%ifdef FILESYSTEM
filesystem:
%defstr FILESYSTEM_STR %[FILESYSTEM]
incbin FILESYSTEM_STR
align BLOCK_SIZE, db 0
.end:
align BLOCK_SIZE, db 0
%endif
%endif