Exactly how do I install it?
(Simple instructions please, I'm a C newb. ;P)
I already Have Cygwin, SDK, and libs all set up... ;)
Also, is Cygwin still capable of compiling 1.50 kernel homebrew, after installing the 3.71 SDK ??
Thanks in advance for replies.
~ Shizzy
Mr. Shizzy Wrote:Exactly how do I install it?
Mr. Shizzy Wrote:I already Have Cygwin, SDK, and libs all set up... ;)
Erm, shouldn't it be installed already if you have it set up?
Mr. Shizzy Wrote:Also, is Cygwin still capable of compiling 1.50 kernel homebrew, after installing the 3.71 SDK ??
I would imagine so.
Still, 3.xx kernel is better...
^^^ No, there where new files that came in a "SDK" folder with 3.71 M33.
I'm pretty sure these need to be installed into the old SDK in order to make 3.XX homebrew...
Only problem is, that there are several folders in my Cygwin folder that are named as the ones DAX provided... Don't want to install them to wrong directory...
Maybe I'm wrong ???
Off-topic a bit, but if you need some graphics stuff done for any future homebrew you make, feel free to ask me. I'm bored :D
There is no 3.71 SDK.
Simple explanation:
Module Info:
Quote:PSP_MODULE_INFO("App Name", PSP_MODULE_USER, 1, 1);
PSP_MAIN_THREAD_ATTR:
Quote:PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER);
PSP's Heap size allowed for your application:
Quote:PSP_HEAP_SIZE_KB(20480);
Add there to your makefile:
Quote:BUILD_PRX=1
PSP_FW_VERSION=371
You cannot make any kernel calls! If you want to use kernel functions, you must create a separated prx in kernel mode and run the function from there.
extract the M33 SDK into your pre-install SDK, that's all.
all u have to do is modify your makefile/source to meet the user mode requirement..
http://exophase.com/files/psp/release.rar
Quote:SDK for 3.71 M33
Some changes have been added in this sdk: sctrlHENSetOnApplyPspRelSectionEven has been replaced
by sctrlHENSetStartModuleHandler.
Sony has changed a lot of kernel nids: ctrl, power, syscon, sysreg, clockgen, umd modules, etc
If your prx doesn't load, dump your nids using prxtool, and compare them to the ones of 3.71.
Sony has also deleted the power speed functions from kernel usage. You can use the new function
sctrlHENSetSpeed to fix this issue.
Included is a sample that uses the 32 MB of extra ram of the psp slim.
but it is not a complete sdk..it is just the changed files I guess.
cool thanks guys.
so just to re iterate:
All I need to do is drop the "include" and "lib" folders (that came in the "Sdk" folder with 3.71 M33) directly into my Cygwin folder, and then follow the steps Pirata Nervo has outlined above?
Thanks for the replies. :)
you can do the steps that I posted without 3.71 sdk too, the 3.71 sdk is just a couple of new functions.