7 lines
126 B
C
7 lines
126 B
C
|
#include "paging.h"
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void* alloc_memory(uint32_t num_blocks) {
|
||
|
return alloc_kern_pages(num_blocks,1);
|
||
|
}
|