From b7c96e19420eaf848c7f3bc7dd236eb59b76ed65 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Wed, 23 Jul 2014 07:44:18 -0700 Subject: [PATCH] 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. --- Core/MemMap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/MemMap.h b/Core/MemMap.h index b4a3c85885..4fed647f2f 100644 --- a/Core/MemMap.h +++ b/Core/MemMap.h @@ -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;}