melonDS/main.cpp

19 lines
221 B
C++
Raw Normal View History

2016-05-16 09:48:40 -06:00
#include <stdio.h>
#include "NDS.h"
2016-05-15 19:40:11 -06:00
int main()
{
2016-05-16 09:48:40 -06:00
printf("melonDS version uh... 0.1??\n");
printf("it's a DS emulator!!!\n");
2016-05-16 09:48:40 -06:00
NDS::Init();
for (;;)
{
NDS::RunFrame();
}
2016-05-15 19:40:11 -06:00
return 0;
}