Created
April 30, 2011 18:44
-
-
Save Ludo6431/949865 to your computer and use it in GitHub Desktop.
assert(0) shutdown DS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*--------------------------------------------------------------------------------- | |
Basic template code for starting a DS app | |
---------------------------------------------------------------------------------*/ | |
#include <nds.h> | |
#include <stdio.h> | |
#include <assert.h> | |
//--------------------------------------------------------------------------------- | |
int main(void) { | |
//--------------------------------------------------------------------------------- | |
consoleDemoInit(); | |
iprintf("Hello World!"); | |
assert(0); | |
while(1) swiWaitForVBlank(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment