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.
|
#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 |