aboutsummaryrefslogtreecommitdiff
path: root/malloc.c
blob: c8d865b0725e18bba191e893b4a32be315ff98e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <inttypes.h>
#include "string.h"
#include "bios.h"

static uint8_t *fseg_base = &edata;
static uint8_t *malloc_top = &stext;

void *malloc(int n)
{
	malloc_top -= (n + 15) & -16;
	return malloc_top;
}

void *malloc_fseg(int n)
{
	void *p = fseg_base;
	fseg_base += (n + 15) & -16;
	return p;
}