summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-05-01 19:07:34 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-05-01 19:07:34 +0200
commit08ab6eb8e5be78d6362fccb95cdf825cd977d934 (patch)
tree4fc6a630b476d4084916bd65577ac8abeb647574 /src/Makefile
parentd1cefde0065be153be3b66c5729eac3b6869155b (diff)
downloadabaos-08ab6eb8e5be78d6362fccb95cdf825cd977d934.tar.gz
abaos-08ab6eb8e5be78d6362fccb95cdf825cd977d934.tar.bz2
write vga strings and some cursor handling
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