| 40 | } |
| 41 | |
| 42 | int Load( const char *path ) |
| 43 | { |
| 44 | int ret = pspSdkLoadStartModule(path, PSP_MEMORY_PARTITION_KERNEL); |
| 45 | |
| 46 | if( ret < 0 ) |
| 47 | { |
| 48 | printf( "Failed to load %s: %d\n",path, ret ); |
| 49 | return ret; //-1 |
| 50 | } |
| 51 | |
| 52 | printf( "Successfully loaded %s: %08X\n", path, ret ); |
| 53 | |
| 54 | return ret; |
| 55 | } |
| 56 | } |
no outgoing calls
no test coverage detected