Files
jsix/src/kernel/memory.cpp
Justin C. Miller da404f520d Rearrange memory bootstrapping code.
Move EFI-related code and initial memory manager bootstrap code
to memory_bootstrap.cpp, move memory page structs to their own
memory_page.h/cpp files.
2018-04-21 02:52:52 -07:00

11 lines
249 B
C++

#include "assert.h"
#include "console.h"
#include "memory.h"
#include "memory_pages.h"
memory_manager *memory_manager::s_instance = nullptr;
memory_manager::memory_manager(page_block *free, page_block *used, void *scratch, size_t scratch_len)
{
}