feat(vmm): Add Paging support

This commit is contained in:
Daniel Hammer
2025-04-17 21:54:25 +02:00
parent 0b77abfc23
commit 2515149f28
14 changed files with 266 additions and 11 deletions
+3
View File
@@ -22,6 +22,7 @@ SECTIONS
/* Any address in this region will do, but often 0xffffffff80000000 is chosen as */
/* that is the beginning of the region. */
. = 0xffffffff80000000;
KernelStartSymbol = .;
/* Define a section to contain the Limine requests and assign it to its own PHDR */
.limine_requests : {
@@ -74,4 +75,6 @@ SECTIONS
*(.eh_frame*)
*(.note .note.*)
}
KernelEndSymbol = .;
}