summaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index 96badf62..d267a474 100644
--- a/makefile
+++ b/makefile
@@ -5,16 +5,16 @@ ASM = nasm
ASMFLAGS = -f elf64
# This file is the kernel, responsible of task management, memory, drivers and more.
-KERNEL = hKernel.bin
+KERNEL = hKernel.elf
# The kernel entrypoint
ENTRY = __KernelMain
# Where the text segment is.
-TEXT = 0x8000000
+TEXT = 0x400000
# we want a flat binary
-FMT = binary
+FMT = elf64
.PHONY: kernel-build
kernel-build: