diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-02 20:12:42 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-02 20:12:42 +0100 |
commit | 6a56675851c16a0cefcf5a2d10a1227c37e9d886 (patch) | |
tree | aebd4784159999993e3ae9f1e7c15961f267cad6 /kernel/Makefile | |
parent | 456fc99e8feac598f7c6f1a3aaa82bf994404e39 (diff) | |
download | macroscope-6a56675851c16a0cefcf5a2d10a1227c37e9d886.tar.gz macroscope-6a56675851c16a0cefcf5a2d10a1227c37e9d886.zip |
Implement kernel memory region allocator.
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index dec8686..58a6339 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -12,7 +12,7 @@ LDFLAGS = -T linker.ld -ffreestanding -O2 -nostdlib -lgcc OBJ = lib/string.o lib/printf.o \ l0/loader.o l0/kmain.o l0/dbglog.o l0/sys.o \ l0/gdt.o l0/idt.o l0/interrupt.o \ - l0/frame.o l0/paging.o + l0/frame.o l0/paging.o l0/region.o OUT = kernel.bin all: $(OUT) |