summaryrefslogtreecommitdiff
path: root/target-sparc/helper.c
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-28 20:54:33 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-28 20:54:33 +0000
commit3ebf5aafe562158b59aff2ee49cbcf54332cbb23 (patch)
tree49e70fa2f1bf2580b4f9ad16bf4096a2004a8551 /target-sparc/helper.c
parent9c2b428ee169dfbc92664f06e466a8bb0f45c702 (diff)
downloadqemu-3ebf5aafe562158b59aff2ee49cbcf54332cbb23.tar.gz
Use slavio base as boot prom address, rearrange sun4m init code
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3747 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/helper.c')
-rw-r--r--target-sparc/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-sparc/helper.c b/target-sparc/helper.c
index 0ebc365e26..a1daed8b7c 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 = 0xff0000000ULL | (address & 0x3ffffULL);
+ *physical = env->prom_addr | (address & 0x3ffffULL);
*prot = PAGE_READ | PAGE_EXEC;
return 0;
}