Upload files to "include/mm"

This commit is contained in:
2025-05-20 20:41:52 -05:00
parent afc08c3d0d
commit ab7ff12a2f
4 changed files with 47 additions and 0 deletions

9
include/mm/paging.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef _PAGING_H
#define _PAGING_H
#include <types.h>
void paging_init(void);
void map_page(void* phys, void* virt);
#endif