From 5fb4d5d48a57916b6c56a5c8dac212e400ef70a6 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sat, 16 Mar 2013 09:15:47 +0100 Subject: [PATCH] Set default load address to 0x88004000 according to tpunix --- Core/MemMap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/MemMap.h b/Core/MemMap.h index a7731d839f..ba588d9805 100644 --- a/Core/MemMap.h +++ b/Core/MemMap.h @@ -66,7 +66,7 @@ inline u32 PSP_GetKernelMemoryEnd() { return 0x08400000;} inline u32 PSP_GetUserMemoryBase() { return 0x08800000;} inline u32 PSP_GetUserMemoryEnd() { return 0x0A000000;} -inline u32 PSP_GetDefaultLoadAddress() { return 0x08800000;} +inline u32 PSP_GetDefaultLoadAddress() { return 0x08804000;} //inline u32 PSP_GetDefaultLoadAddress() { return 0x0898dab0;} inline u32 PSP_GetVidMemBase() { return 0x04000000;}