-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmain.c
More file actions
20 lines (17 loc) · 595 Bytes
/
main.c
File metadata and controls
20 lines (17 loc) · 595 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*---------------------------------------------------------------------------------
Basic template code for starting a DS app
---------------------------------------------------------------------------------*/
#include <nds.h>
#include <stdio.h>
//---------------------------------------------------------------------------------
int main(void) {
//---------------------------------------------------------------------------------
consoleDemoInit();
iprintf("Hello World!");
while(1) {
swiWaitForVBlank();
scanKeys();
int pressed = keysDown();
if(pressed & KEY_START) break;
}
}