summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-05-21 16:07:35 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-05-21 16:07:35 +0200
commit39c9cedecc05f7cc35208540044fdc123829e347 (patch)
treee5c00b3ec023d4530a79ef21f5a0cc10d90cd42a /src/Makefile
parenta998c2b6ab7fbfc2b0a15a3de92632178c3564dd (diff)
downloadabaos-39c9cedecc05f7cc35208540044fdc123829e347.tar.gz
abaos-39c9cedecc05f7cc35208540044fdc123829e347.tar.bz2
interrupts are working, some problems with corrupt stack
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 9ffa885..01a61de 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 18)
+# loads only the first sector, so adapt NOF_LOAD_SECTORS to 19)
image.bin: boot.bin kernel.bin magic.bin
cat boot.bin kernel.bin > image.tmp
- truncate -s 9216 image.tmp
+ truncate -s 9728 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