Subversion Repositories freemyipod

Rev

Rev 652 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
566 theseven 1
#include "emcoreapp.h"
2
 
3
 
4
static void main()
5
{
6
    cputs(2, "Memory map:\n");
7
    malloc_walk(NULL, (void*)2);
8
    cputc(2, '\n');
9
}
10
 
11
 
12
EMCORE_APP_HEADER("Memory allocation dumper", main, 127)