mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
19 lines
221 B
C++
19 lines
221 B
C++
#include <stdio.h>
|
|
#include "NDS.h"
|
|
|
|
|
|
int main()
|
|
{
|
|
printf("melonDS version uh... 0.1??\n");
|
|
printf("it's a DS emulator!!!\n");
|
|
|
|
NDS::Init();
|
|
|
|
for (;;)
|
|
{
|
|
NDS::RunFrame();
|
|
}
|
|
|
|
return 0;
|
|
}
|