14 lines
No EOL
256 B
C
14 lines
No EOL
256 B
C
/* EMK 1.0 Copyright (c) 2025 Piraterna */
|
|
#ifndef PMM_H
|
|
#define PMM_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
|
|
#define PAGE_SIZE 0x1000
|
|
|
|
void pmm_init();
|
|
void *palloc(size_t pages, bool higher_half);
|
|
void pfree(void *ptr, size_t pages);
|
|
|
|
#endif // PMM_H
|