summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-06-02 09:38:38 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-06-02 09:38:38 +0200
commit0b034e25560ec3d5c73d0d2ced8632eecbbaff8f (patch)
tree86dbcbc3ddb79d0f232e0144a56351d6d90888f8 /src/Makefile
parent32db109e61f7e67c85907f36d00518d662238087 (diff)
downloadabaos-0b034e25560ec3d5c73d0d2ced8632eecbbaff8f.tar.gz
abaos-0b034e25560ec3d5c73d0d2ced8632eecbbaff8f.tar.bz2
some work on keyboard initialization
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 14aa939..d72f5aa 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -13,10 +13,10 @@ all: image.bin kernel.sym
# + M * 512 (M is currently 7) = 3144 for kernel.bin
# + 1 * 512 = 512 for magic.bin
# (M + N + 1 is the number of sectors to be read in stage 2, as stage 1
-# loads only the first sector, so adapt NOF_LOAD_SECTORS to 20)
+# loads only the first sector, so adapt NOF_LOAD_SECTORS to 21)
image.bin: boot.bin kernel.bin magic.bin
cat boot.bin kernel.bin > image.tmp
- truncate -s 10240 image.tmp
+ truncate -s 10752 image.tmp
cat image.tmp magic.bin > image.bin
boot.bin: boot.asm boot_gdt.asm stage1_functions.asm stage2_functions.asm stage2_switch_mode.asm stage2_a20.asm