summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-06-04 15:14:23 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-06-04 15:14:23 +0200
commit7099e089cdb78076032e16318c7886bf12b53d04 (patch)
tree2a6596b743056ef2362192ca7bc465db6827a2a5 /src/Makefile
parentc645abdb40763ff13cc31f7d8e66543f1fb744d1 (diff)
downloadabaos-7099e089cdb78076032e16318c7886bf12b53d04.tar.gz
abaos-7099e089cdb78076032e16318c7886bf12b53d04.tar.bz2
emitting mouse events now, printing them for now, later this will be
the text mode cursor
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 d0e9d68..3388eb4 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 24)
+# loads only the first sector, so adapt NOF_LOAD_SECTORS to 27)
image.bin: boot.bin kernel.bin magic.bin
cat boot.bin kernel.bin > image.tmp
- truncate -s 12288 image.tmp
+ truncate -s 13824 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