Skip to content

Instantly share code, notes, and snippets.

@Ludo6431
Created April 30, 2011 18:44
Show Gist options
  • Save Ludo6431/949865 to your computer and use it in GitHub Desktop.
Save Ludo6431/949865 to your computer and use it in GitHub Desktop.
assert(0) shutdown DS
/*---------------------------------------------------------------------------------
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