selfmade-os

annotate mem.h @ 1:42ba76f77035

the kernel with output and mem alloc
author meillo@marmaro.de
date Sun, 01 Nov 2009 23:50:51 +0100
parents
children
rev   line source
meillo@1 1
meillo@1 2 unsigned char* newp;
meillo@1 3 unsigned char* maxmem;
meillo@1 4 unsigned char* minmem;
meillo@1 5
meillo@1 6 void initmem(unsigned int memstart);
meillo@1 7 void* malloc(unsigned int size);
meillo@1 8