Hi.
I dare consider myself a guy who knows how to do "Hello world" apps with C/C++ :D.But I seriously don't know where to start with PSPSDK.I mean,how DO you use PSPSDK,how do you compile your C source,stuff like that.I'd seriously appreciate it if someone could tell me where to begin?Thanx in advance.
			
			
									
									
						need some help with PSPSDK
I assume oyu have /windows innstalled on your pc.
If that's true oyu can easily install MinPSPW. its a pre-compiled (compiles by someone else) package which contains the most important parts of the pspSDK.
http://minpspw.sourceforge.net/
or a direct link to the installer
http://downloads.sourceforge.net/minpsp ... -0.9.2.exe
when you have MinPSPW installed you cna start here:
http://www.psp-programming.com/tutorials/c/lesson02.htm
			
			
									
									If that's true oyu can easily install MinPSPW. its a pre-compiled (compiles by someone else) package which contains the most important parts of the pspSDK.
http://minpspw.sourceforge.net/
or a direct link to the installer
http://downloads.sourceforge.net/minpsp ... -0.9.2.exe
when you have MinPSPW installed you cna start here:
http://www.psp-programming.com/tutorials/c/lesson02.htm
Code: Select all
int main(){
     SetupCallbacks();
     makeNiceGame();
     sceKernelExitGame();
}