summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-25 22:28:25 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-25 22:28:25 +0000
commitbb7ec0437a647c6734f65719f861d68a5281351d (patch)
tree08d7288dcf56b29b2b8f640d84e6f16fdf66dade
parentbdf46ea256cfc12221b64399c4e896139990e2c1 (diff)
downloadfocaccia-qemu-bb7ec0437a647c6734f65719f861d68a5281351d.tar.gz
focaccia-qemu-bb7ec0437a647c6734f65719f861d68a5281351d.zip
m68k mmap2 fixes.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4106 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--linux-user/main.c2
-rw-r--r--linux-user/syscall.c4
-rw-r--r--target-cris/cpu.h1
3 files changed, 3 insertions, 4 deletions
diff --git a/linux-user/main.c b/linux-user/main.c
index 44af787d66..234a6dc6fc 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -1763,7 +1763,7 @@ void cpu_loop(CPUM68KState *env)
                                           env->dregs[3],
                                           env->dregs[4],
                                           env->dregs[5],
-                                          env->dregs[6]);
+                                          env->aregs[0]);
             }
             break;
         case EXCP_INTERRUPT:
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 72b80e3fbb..a15c93567e 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -4086,10 +4086,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
 #endif
 #ifdef TARGET_NR_mmap2
     case TARGET_NR_mmap2:
-#if defined(TARGET_SPARC) || defined(TARGET_MIPS)
+#ifndef MMAP_SHIFT
 #define MMAP_SHIFT 12
-#else
-#define MMAP_SHIFT TARGET_PAGE_BITS
 #endif
         ret = get_errno(target_mmap(arg1, arg2, arg3,
                                     target_to_host_bitmask(arg4, mmap_flags_tbl),
diff --git a/target-cris/cpu.h b/target-cris/cpu.h
index 44d5ed7d61..ac042d5d21 100644
--- a/target-cris/cpu.h
+++ b/target-cris/cpu.h
@@ -213,6 +213,7 @@ void register_cris_insns (CPUCRISState *env);
 
 /* CRIS uses 8k pages.  */
 #define TARGET_PAGE_BITS 13
+#define MMAP_SHIFT TARGET_PAGE_BITS
 
 #define CPUState CPUCRISState
 #define cpu_init cpu_cris_init