Does someone nows how to get and print the devkit version ?
what i think :
sceGetDevKitVersion(PSP_DEVKIT_VERSION, Version, 20)
printf(Version)
How to get and print devkit version?
It's amazing what you can learn by reading the header files from the SDK...
etc.
Code: Select all
/**
* Get the firmware version.
*
* @returns The firmware version.
* 0x01000300 on v1.00 unit,
* 0x01050001 on v1.50 unit,
* 0x01050100 on v1.51 unit,
* 0x01050200 on v1.52 unit,
* 0x02000010 on v2.00/v2.01 unit,
* 0x02050010 on v2.50 unit,
* 0x02060010 on v2.60 unit,
* 0x02070010 on v2.70 unit,
* 0x02070110 on v2.71 unit.
*/
int sceKernelDevkitVersion(void);