18 lines
287 B
C
18 lines
287 B
C
//
|
|
// Created by rick on 22-04-20.
|
|
//
|
|
|
|
#ifndef NEW_KERNEL_MEM_H
|
|
#define NEW_KERNEL_MEM_H
|
|
|
|
#include <multiboot.h>
|
|
|
|
void init_mmap(struct multiboot_mmap_entry *entries, u32 count);
|
|
|
|
void print_mmap_info();
|
|
|
|
void* malloc(unsigned int size);
|
|
void free(void* mem);
|
|
|
|
#endif //NEW_KERNEL_MEM_H
|