i'm so close

This commit is contained in:
2025-07-08 18:53:06 +03:00
parent a9f8e96ac9
commit 5b5de55919
2 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ void destroy_page_dir(uint32_t* page_dir_virt) {
// If the page table entry is present, free the physical page (frame) it points to
if (pte & PAGE_PRESENT) {
debug_log("freeing page %X\n", pte);
//debug_log("freeing page %X\n", pte);
free_page((void*)(pte & ~0xFFF));
}
}