summaryrefslogtreecommitdiff
path: root/src/kernel/mem.h
blob: 913f70b9431ef74e44b4b695aac2c7156a516fd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MEM_H
#define MEM_H

#include <stdint.h>

extern uint16_t pages_left;

void init_mmap();

void *allocate_pages(uint16_t n);
void free_pages(void *ptr, uint16_t n);

#endif