Allocate executables low, not at a specific addr.

Since usersystemlib takes 0x4000 at the bottom, this will be the same.
The only impact is that kernel modules may also be able to allocate.
This commit is contained in:
Unknown W. Brackets 2014-07-23 07:44:18 -07:00
parent a16ccf52e7
commit b7c96e1942

View file

@ -452,7 +452,7 @@ inline u32 PSP_GetKernelMemoryEnd() { return 0x08400000;}
inline u32 PSP_GetUserMemoryBase() { return 0x08800000;}
inline u32 PSP_GetDefaultLoadAddress() { return 0x08804000;}
inline u32 PSP_GetDefaultLoadAddress() { return 0;}
//inline u32 PSP_GetDefaultLoadAddress() { return 0x0898dab0;}
inline u32 PSP_GetVidMemBase() { return 0x04000000;}
inline u32 PSP_GetVidMemEnd() { return 0x04800000;}