summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-05-01 18:28:00 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-05-01 18:28:00 +0200
commitd1cefde0065be153be3b66c5729eac3b6869155b (patch)
tree340b42531cbeb74f1bcf2f581ed913b888b96584 /src/Makefile
parenta581da207d04c11b588bbad05ba70a8cfe2d3d93 (diff)
downloadabaos-d1cefde0065be153be3b66c5729eac3b6869155b.tar.gz
abaos-d1cefde0065be153be3b66c5729eac3b6869155b.tar.bz2
added some primitive VGA functions and rewrote kernel.c greeting
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index fcde58d..0d9cc1e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -7,8 +7,8 @@ all: image.bin
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 2)
- truncate -s 3072 image.bin
+ # 512 (boot, first stage) + N * 512 (N currenty is 3) + M * 512 (M is currently 3)
+ truncate -s 3584 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