summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 45db0f7..e0dfedb 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -19,7 +19,7 @@ boot.bin: boot.asm gdt.asm stage1_functions.asm stage2_functions.asm switch_mode
nasm boot.asm -f bin -o boot.bin
kernel.bin: kernel.o vga.o port.o port_asm.o string.o stdlib.o
- $(LD) -o kernel.bin -n -Ttext 0x8000 --oformat binary \
+ $(LD) -o kernel.bin -N -n -Ttext 0x8400 --oformat binary \
kernel.o vga.o port.o port_asm.o string.o stdlib.o
magic.bin: magic.asm