1
0

Add simple page allocator and doubly-linked list implementation.

This commit is contained in:
2012-09-17 23:27:11 -04:00
parent b531496f8e
commit 0b3865d16a
5 changed files with 223 additions and 0 deletions

View File

@ -3,5 +3,7 @@ KERNEL_PREFIX = kernel
KOBJS += $(KERNEL_PREFIX)/console.o
KOBJS += $(KERNEL_PREFIX)/font.o
KOBJS += $(KERNEL_PREFIX)/framebuffer.o
KOBJS += $(KERNEL_PREFIX)/list.o
KOBJS += $(KERNEL_PREFIX)/mm.o
KOBJS += $(KERNEL_PREFIX)/print.o
KOBJS += $(KERNEL_PREFIX)/start_kernel.o