Trying to fix kheap...

This commit is contained in:
ice-bit
2019-09-26 17:45:46 +02:00
parent 8ff8d71af8
commit 3e0e8043d5
19 changed files with 383 additions and 701 deletions

View File

@@ -1,7 +1,7 @@
LD = i686-elf-ld
LFLAGS = -melf_i386 -nostdlib -O2 -T link.ld
all: prepare cpu kernel_code drivers libc shell link iso
all: prepare cpu kernel_code drivers libc shell mem link iso
prepare:
mkdir -p obj/
@@ -28,6 +28,10 @@ shell:
make -C kernel/shell
cp kernel/shell/*.o obj/
mem:
make -C kernel/mem
cp kernel/mem/*.o obj/
link:
$(LD) $(LFLAGS) -o isodir/boot/iceOS.bin obj/*.o