rpi4-osdev/part12-wgt/lib/mem.c
2021-03-08 22:51:02 +00:00

43 lines
810 B
C

extern unsigned char _end[];
// Define the heap
unsigned char *HEAP_START = &_end[0];
unsigned int HEAP_SIZE = 0x40000000; // Max heap size is 1Gb
unsigned char *HEAP_END;
// Set up some globals
unsigned char *freeptr;
unsigned int allocated = 0;
void mem_init()
{
// Align the start of heap to an 8-byte boundary
if ((long)&HEAP_START % 8 != 0) {
HEAP_START += 8 - ((long)&HEAP_START % 8);
}
HEAP_END = (unsigned char *)(HEAP_START + HEAP_SIZE);
}
void *malloc(unsigned int size)
{
if (size > 0) {
void *allocated = freeptr;
if ((unsigned char *)(allocated + size) > HEAP_END) {
return 0;
} else {
freeptr += size;
allocated += size;
return allocated;
}
}
return 0;
}
void free(void *ptr) {
// TODO
}