aboutsummaryrefslogtreecommitdiff
path: root/target-sparc
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-28 20:57:43 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-28 20:57:43 +0000
commit7d85892b9be865631bd6ab9a732e0fc5629b8797 (patch)
treec119dccbcd664193a055e55e48920823b0bbb5e6 /target-sparc
parent8543e2cfce168af5499f27f322a3433888a62a18 (diff)
Initial support for Sun4d machines (SS-1000, SS-2000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3869 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc')
-rw-r--r--target-sparc/op_helper.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c
index f267b379ae..922c806511 100644
--- a/target-sparc/op_helper.c
+++ b/target-sparc/op_helper.c
@@ -418,8 +418,7 @@ void helper_ld_asi(int asi, int size, int sign)
break;
}
break;
- case 0x2e: /* MMU passthrough, 0xexxxxxxxx */
- case 0x2f: /* MMU passthrough, 0xfxxxxxxxx */
+ case 0x21 ... 0x2f: /* MMU passthrough, 0x100000000 to 0xfffffffff */
switch(size) {
case 1:
ret = ldub_phys((target_phys_addr_t)T0
@@ -445,7 +444,6 @@ void helper_ld_asi(int asi, int size, int sign)
case 0x39: /* data cache diagnostic register */
ret = 0;
break;
- case 0x21 ... 0x2d: /* MMU passthrough, unassigned */
default:
do_unassigned_access(T0, 0, 0, asi);
ret = 0;