Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /*????????include*/
  2. #include <pspkernel.h>
  3. #include <pspdebug.h>
  4.  
  5. /*???*/
  6. PSP_MODULE_INFO("Hello World!", 0, 1, 1);
  7. PSP_MAIN_THREAD_ATTR(THREAD_ATTR_USER);
  8.  
  9. /*main??*/
  10. int main(void)
  11. {
  12. pspDebugScreenInit(); /*??????????*/
  13.  
  14. pspDebugScreenPrintf("Hello World\n"); /*Hello World?????????*/
  15.  
  16. sceKernelExitGame(); /*??????*/
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement