diff options
author | Marvin Borner | 2021-04-05 00:16:11 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-05 00:16:11 +0200 |
commit | 614df32883bd988a59ce1a2a201ce2dd8211ab3a (patch) | |
tree | 9df26abeb4815dd5f3275ca99ef8980d20f78950 /boot/Makefile | |
parent | acffb01f7a8474d4adf82049690380d63faba782 (diff) |
Added ELF and disk detection support to bootloader
Diffstat (limited to 'boot/Makefile')
-rw-r--r-- | boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/Makefile b/boot/Makefile index 7ef6cab..d3a1f2d 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -14,5 +14,5 @@ all: compile compile: @mkdir -p ../build/ @$(CC) -c $(CFLAGS) load.c -o load.o - @$(LD) -N -emain -Ttext 0x00040000 -o ../build/load.bin load.o --oformat binary + @$(LD) -N -emain -Ttext 0x00009000 -o ../build/load.bin load.o --oformat binary @$(AS) -f bin entry.asm -o ../build/boot.bin |