You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
201 B
11 lines
201 B
3 years ago
|
#ifndef _PMM_H_
|
||
|
#define _PMM_H_
|
||
|
|
||
|
// Initialize phisical memeory manager
|
||
|
void pmm_init();
|
||
|
// Allocate a free phisical page
|
||
|
void* alloc_page();
|
||
|
// Free an allocated page
|
||
|
void free_page(void* pa);
|
||
|
|
||
|
#endif
|