summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-06-01 19:14:44 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-06-01 19:14:44 +0200
commitec014db9fa3f6b5b7ad3491c20f2c2a65c56a7a6 (patch)
tree6b645b6be055be47a8f5dbf22ae1c191386148e8 /src/Makefile
parent15a2290a168fa9de80256bb7cefe13384ae3e58b (diff)
downloadabaos-ec014db9fa3f6b5b7ad3491c20f2c2a65c56a7a6.tar.gz
abaos-ec014db9fa3f6b5b7ad3491c20f2c2a65c56a7a6.tar.bz2
introducted a interrupt handler object
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 3e89a74..9c6a931 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 19)
+# loads only the first sector, so adapt NOF_LOAD_SECTORS to 20)
image.bin: boot.bin kernel.bin magic.bin
cat boot.bin kernel.bin > image.tmp
- truncate -s 9728 image.tmp
+ truncate -s 10240 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