Initialize system page tables and configure kernel mappings

This commit is contained in:
2025-12-23 18:03:02 +01:00
committed by CodingWorkshop Signing Team
parent 536d59c3a8
commit 446d9af325
4 changed files with 72 additions and 1 deletions

View File

@@ -56,3 +56,6 @@ LOADER_MEMORY_DESCRIPTOR MM::Pfn::OriginalFreeDescriptor;
/* Size of the PFN database in pages */
PFN_NUMBER MM::Pfn::PfnDatabaseSize;
/* Template PTE entry containing standard flags for a valid, present kernel page */
MMPTE MM::Pte::ValidPte = {MM_PTE_VALID|MM_PTE_EXECUTE_READWRITE|MM_PTE_DIRTY|MM_PTE_ACCESSED};