From patchwork Sat Feb 6 16:43:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [8/8] target-sh4: MMU: fix store queue addresses Date: Sat, 06 Feb 2010 06:43:43 -0000 From: Aurelien Jarno X-Patchwork-Id: 44710 Message-Id: <1265474623-23367-9-git-send-email-aurelien@aurel32.net> To: qemu-devel@nongnu.org Cc: Aurelien Jarno The store queues are located from 0xe0000000 to 0xe3ffffff. Signed-off-by: Aurelien Jarno --- target-sh4/helper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-sh4/helper.c b/target-sh4/helper.c index 9b3a259..0a2a90e 100644 --- a/target-sh4/helper.c +++ b/target-sh4/helper.c @@ -402,7 +402,7 @@ static int get_physical_address(CPUState * env, target_ulong * physical, if ((address >= 0x80000000 && address < 0xc0000000) || address >= 0xe0000000) { if (!(env->sr & SR_MD) - && (address < 0xe0000000 || address > 0xe4000000)) { + && (address < 0xe0000000 || address >= 0xe4000000)) { /* Unauthorized access in user mode (only store queues are available) */ fprintf(stderr, "Unauthorized access\n"); if (rw == 0)