MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / Load

Function Load

Source/SysPSP/Utility/ModulePSP.cpp:42–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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}

Callers 3

InitializeFunction · 0.85
InitHomeButtonFunction · 0.85
InitialiseJobManagerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected