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

11
include/mm/pmm.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef _PMM_H
#define _PMM_H
#include <stdint.h>
#include <multiboot.h>
void pmm_init(multiboot_info_t* mb_info);
void* alloc_page(void);
void free_page(void* ptr);
#endif