12 lines
180 B
C
12 lines
180 B
C
#ifndef _PMM_H
|
|
#define _PMM_H
|
|
|
|
#include <types.h>
|
|
#include <multiboot.h>
|
|
|
|
void pmm_init(multiboot_info_t* mb);
|
|
void* pmm_alloc_page(void);
|
|
void pmm_free_page(void* addr);
|
|
|
|
#endif
|