selfmade-os

diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mem.h	Sun Nov 01 23:50:51 2009 +0100
     1.3 @@ -0,0 +1,8 @@
     1.4 +
     1.5 +unsigned char* newp;
     1.6 +unsigned char* maxmem;
     1.7 +unsigned char* minmem;
     1.8 +
     1.9 +void initmem(unsigned int memstart);
    1.10 +void* malloc(unsigned int size);
    1.11 +