GDT, page frame allocator
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include <limine.h>
|
||||
#include <cstddef>
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace Memory {
|
||||
// Shared
|
||||
struct LargestSection {
|
||||
uint64_t address;
|
||||
size_t size;
|
||||
};
|
||||
|
||||
LargestSection Scan(limine_memmap_response* mmap);
|
||||
};
|
||||
Reference in New Issue
Block a user