mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
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:
parent
a16ccf52e7
commit
b7c96e1942
1 changed files with 1 additions and 1 deletions
|
@ -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;}
|
||||
|
|
Loading…
Add table
Reference in a new issue