annotate mem.h @ 1:42ba76f77035 default tip

the kernel with output and mem alloc
author meillo@marmaro.de
date Sun, 01 Nov 2009 23:50:51 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
1
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
2 unsigned char* newp;
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
3 unsigned char* maxmem;
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
4 unsigned char* minmem;
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
5
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
6 void initmem(unsigned int memstart);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
7 void* malloc(unsigned int size);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
8