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");
|
2016-11-03 00:38:58 +00:00
|
|
|
printf("it's a DS emulator!!!\n");
|
2016-05-16 15:48:40 +00:00
|
|
|
|
|
|
|
NDS::Init();
|
|
|
|
|
2016-11-24 17:31:49 +00:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
NDS::RunFrame();
|
|
|
|
}
|
|
|
|
|
2016-05-16 01:40:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|