From: blueswir1 Date: Thu, 29 Nov 2007 17:08:01 +0000 (+0000) Subject: Increase prom size for boot mode X-Git-Tag: TizenStudio_2.0_p2.3~12473 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58a770f3a4b44d59ea07cfd40a05aa450c045c8f;p=sdk%2Femulator%2Fqemu.git Increase prom size for boot mode git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3748 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-sparc/helper.c b/target-sparc/helper.c index a1daed8..894e326 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -115,7 +115,7 @@ int get_physical_address (CPUState *env, target_phys_addr_t *physical, int *prot if ((env->mmuregs[0] & MMU_E) == 0) { /* MMU disabled */ // Boot mode: instruction fetches are taken from PROM if (rw == 2 && (env->mmuregs[0] & env->mmu_bm)) { - *physical = env->prom_addr | (address & 0x3ffffULL); + *physical = env->prom_addr | (address & 0x7ffffULL); *prot = PAGE_READ | PAGE_EXEC; return 0; }