nds_nflib/template/source/main.c
2023-05-19 02:17:59 +01:00

30 lines
533 B
C

// SPDX-License-Identifier: CC0-1.0
//
// SPDX-FileContributor: NightFox & Co., 2009-2011
//
// NightFox's Lib Template
// http://www.nightfoxandco.com
#include <stdio.h>
#include <nds.h>
#include <nf_lib.h>
int main(int argc, char **argv)
{
consoleDemoInit(); // Initialize console
printf("\n Hello World!");
while (1)
{
// Wait for the screen refresh
swiWaitForVBlank();
}
// If this is reached, the program will return to the loader if the loader
// supports it.
return 0;
}