mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
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.
11 lines
249 B
C++
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)
|
|
{
|
|
}
|