Files
TestOS/os/alloc.c
2024-11-02 19:07:52 +01:00

15 lines
285 B
C

#include "alloc.h"
#include "stdint.h"
void* *first_mem_avail = (void*) 0x20000000;
void init_allocator() {
*first_mem_avail = (void*) 0x20000000 +sizeof(void*);
}
void* malloc(size_t size) {
void* block = *first_mem_avail;
*first_mem_avail += size;
return block;
}