Advertisement
Guest User

Untitled

a guest
Dec 25th, 2011
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <nds.h>
  2. #include <stdio.h>
  3. #include "wavplayer.h"
  4. #include <fat.h>
  5.  
  6. int main(void)
  7. {
  8.     consoleDemoInit();
  9.     fatInitDefault();
  10.    
  11.     iprintf("Hello World!");
  12.    
  13.     wavPlayer p ("/data/nitroblaster/7.pcm");
  14.    
  15.     while(1) {
  16.         p.update();
  17.         swiWaitForVBlank();
  18.     }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement