split the low-level memory manager functions into their own assembly source

file down in the mm subdirectory
This commit is contained in:
Eric J. Bowersox
2013-05-03 00:03:12 -06:00
parent 61ff5d8db4
commit e316553b81
3 changed files with 191 additions and 153 deletions

View File

@@ -32,7 +32,7 @@ MAKEFLAGS += -rR
CRBASEDIR := $(abspath ../..)
include $(CRBASEDIR)/armcompile.mk
MM_OBJS = memmgr.o vmmap.o pagealloc.o kernel_space.o
MM_OBJS = lowlevel.o memmgr.o vmmap.o pagealloc.o kernel_space.o
MM_INIT_OBJS = init_heap.o
all: kernel-mm.o