summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 0d9cc1e..ec9e466 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -8,7 +8,7 @@ image.bin: boot.bin kernel.bin
cat boot.bin kernel.bin > image.bin
# truncate to correct number of sectors, we have
# 512 (boot, first stage) + N * 512 (N currenty is 3) + M * 512 (M is currently 3)
- truncate -s 3584 image.bin
+ truncate -s 4096 image.bin
boot.bin: boot.asm gdt.asm stage1_functions.asm stage2_functions.asm switch_mode.asm
nasm boot.asm -f bin -o boot.bin