Remove useless code/comments

This commit is contained in:
2026-01-04 09:24:25 +01:00
parent e18b73c8a0
commit 923758a4ea
2 changed files with 7 additions and 60 deletions

View File

@@ -55,9 +55,9 @@ void* vmm_alloc(size_t length, size_t flags)
// the next page so its coherent with the PMM
size_t len = ALIGN_UP(length, PAGE_SIZE);
// Some linked list shenanigans will be here
// but for now we'd need some kheap to kmalloc the linked list items
// else we can't do it
// Need to implement this (as linked list)
// but for now kernel heap is sufficient
// The VMM will prob be more useful when we have userspace
}
void vmm_init()