melonDS/main.cpp

19 lines
221 B
C++
Raw Normal View History

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