12 lines
176 B
C
12 lines
176 B
C
|
#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
|