diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-01-19 12:44:57 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-01-19 12:45:09 +0100 |
| commit | 9d6babb9a3b9ffbedc1fa377f47ff6b3f7585056 (patch) | |
| tree | 8d24c521d8986a8a2ed0273763bfe309dd05b524 /makefile | |
| parent | 149ad21b7188d21d726215c98d0d74835ea4e737 (diff) | |
Kernel/PowerPC: did some progress on it, got it booting on ofw.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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: |
