mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06: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;
|
|
}
|