Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. //
  2. // Created by cpasjuste on 30/04/17.
  3. //
  4.  
  5. #include <psp2/kernel/modulemgr.h>
  6.  
  7. void _start() __attribute__ ((weak, alias ("module_start")));
  8.  
  9. int module_start(SceSize argc, const void *args) {
  10.  
  11.     return SCE_KERNEL_START_SUCCESS;
  12. }
  13.  
  14. int module_stop(SceSize argc, const void *args) {
  15.  
  16.     return SCE_KERNEL_STOP_SUCCESS;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement