GDT, page frame allocator

This commit is contained in:
Daniel Hammer
2025-02-27 19:48:03 +04:00
commit 6f1c6f1316
31 changed files with 2016 additions and 0 deletions
+15
View File
@@ -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);
};