| ![[BACK]](/cvs/cvsweb/icons/back.gif) Return to ndsconsole.cpp CVS log ![[TXT]](/cvs/cvsweb/icons/text.gif) | ![[DIR]](/cvs/cvsweb/icons/dir.gif) Up to  [RetroPC.NET] / xmil / nds / win32s | 
add nds-win32 simulation project
#include "compiler.h"
#include "libnds.h"
void consoleInitDefault(u16* map, u16* charBase, u8 bitDepth)
{
}
void iprintf(const char *lpcszFormat, ...)
{
	va_list	ap;
	va_start(ap, lpcszFormat);
	vprintf(lpcszFormat, ap);
	va_end(ap);
}