aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornotaz2013-04-02 01:34:21 +0300
committernotaz2013-04-02 01:34:21 +0300
commita95a5e2e0c4bd0da035729d2fd16c068cbd0f633 (patch)
tree30b05666e7883393820fd4c4152fd77b6e112d0c
parent55bf68531a29da02569d0c53caa2f08608a191bb (diff)
parent0069615fdda3a28da547a191bef990256620ff69 (diff)
downloadpcsx_rearmed-a95a5e2e0c4bd0da035729d2fd16c068cbd0f633.tar.gz
pcsx_rearmed-a95a5e2e0c4bd0da035729d2fd16c068cbd0f633.tar.bz2
pcsx_rearmed-a95a5e2e0c4bd0da035729d2fd16c068cbd0f633.zip
Merge branch 'master' into libretro
-rw-r--r--frontend/main.c7
-rw-r--r--libpcsxcore/new_dynarec/emu_if.c7
-rw-r--r--libpcsxcore/psxmem.c10
3 files changed, 22 insertions, 2 deletions
diff --git a/frontend/main.c b/frontend/main.c
index 09f6a1c..2cf5ee0 100644
--- a/frontend/main.c
+++ b/frontend/main.c
@@ -402,7 +402,14 @@ int emu_core_preinit(void)
// it may be redefined by -cfg on the command line
strcpy(cfgfile_basename, "pcsx.cfg");
+#ifdef IOS
+ emuLog = fopen("/User/Documents/pcsxr.log", "w");
+ if (emuLog == NULL)
+ emuLog = fopen("pcsxr.log", "w");
+ if (emuLog == NULL)
+#endif
emuLog = stdout;
+
SetIsoFile(NULL);
memset(&Config, 0, sizeof(Config));
diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c
index 324071d..cb95cb1 100644
--- a/libpcsxcore/new_dynarec/emu_if.c
+++ b/libpcsxcore/new_dynarec/emu_if.c
@@ -260,6 +260,7 @@ static int ari64_init()
{
extern void (*psxCP2[64])();
extern void psxNULL();
+ extern u_char *out;
size_t i;
new_dynarec_init();
@@ -289,6 +290,10 @@ static int ari64_init()
zeromem_ptr = zero_mem;
scratch_buf_ptr = scratch_buf;
+ SysPrintf("Mapped (RAM/scrp/ROM/LUTs/TC):\n");
+ SysPrintf("%08x/%08x/%08x/%08x/%08x\n",
+ psxM, psxH, psxR, mem_rtab, out);
+
return 0;
}
@@ -388,6 +393,8 @@ int new_dynarec_hacks;
void *psxH_ptr;
void *zeromem_ptr;
u8 zero_mem[0x1000];
+u_char *out;
+void *mem_rtab;
void *scratch_buf_ptr;
void new_dynarec_init() { (void)ari64_execute; }
void new_dyna_start() {}
diff --git a/libpcsxcore/psxmem.c b/libpcsxcore/psxmem.c
index 62bbe26..4da0cf4 100644
--- a/libpcsxcore/psxmem.c
+++ b/libpcsxcore/psxmem.c
@@ -52,8 +52,9 @@ retry:
goto out;
}
- if (is_fixed)
- flags |= MAP_FIXED;
+ /* avoid MAP_FIXED, it overrides existing mappings.. */
+ /* if (is_fixed)
+ flags |= MAP_FIXED; */
req = (void *)addr;
ret = mmap(req, size, PROT_READ | PROT_WRITE, flags, -1, 0);
@@ -65,6 +66,11 @@ out:
SysMessage("psxMap: warning: wanted to map @%08x, got %p\n",
addr, ret);
+ if (is_fixed) {
+ psxUnmap(ret, size, tag);
+ return NULL;
+ }
+
if (ret != NULL && ((addr ^ (long)ret) & 0x00ffffff)
&& !tried_to_align)
{