paging: with the huge help from grok, finished paging

This commit is contained in:
2025-03-27 19:08:11 +03:00
parent 7eaabe0f5f
commit d9a8b964ed
4 changed files with 492 additions and 44 deletions
+6 -1
View File
@@ -1,6 +1,11 @@
#ifndef PAGING_H
#define PAGING_H
#include <stdint.h>
void paging_init();
void heap_init();
void* heap_alloc(uint32_t size);
void heap_free(void *ptr);
void test_paging();
void init_allocator();
#endif