aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: 376dea1f43d7fe7d6e191233d53d0cd4c28e6f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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;
}