sim-card
/
qemu
Archived
10
0
Fork 0

Fix bug in Sparc32 sta op (Robert Reif)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3399 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
blueswir1 2007-10-14 20:27:00 +00:00
parent 6f27aba62e
commit 94ced07534
1 changed files with 1 additions and 1 deletions

View File

@ -618,7 +618,7 @@ void helper_st_asi(int asi, int size)
stl_phys((target_phys_addr_t)(T0 & ~3)
| ((target_phys_addr_t)(asi & 0xf) << 32), T1);
stl_phys((target_phys_addr_t)((T0 + 4) & ~3)
| ((target_phys_addr_t)(asi & 0xf) << 32), T1);
| ((target_phys_addr_t)(asi & 0xf) << 32), T2);
break;
}
}