diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-03 23:43:32 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-03 23:43:32 +0000 |
commit | 0fa85d43d47151e71e63754e419340bfcff97e80 (patch) | |
tree | ee797bd86bf4c5e0b6e33b462248da86408ce12c /target-sparc/op_helper.c | |
parent | b4ff59872759eb491313ae4248732d9a2acc1299 (diff) |
64 bit target support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1195 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/op_helper.c')
-rw-r--r-- | target-sparc/op_helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index 6dead66a8c..850d8c03ea 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -108,7 +108,7 @@ void helper_ld_asi(int asi, int size, int sign) if (size == 4) bswap32s(&ret); else if (size == 2) - bswap16s(&ret); + bswap16s((uint16_t *)&ret); break; default: ret = 0; @@ -198,7 +198,7 @@ void helper_st_asi(int asi, int size, int sign) if (size == 4) bswap32s(&temp); else if (size == 2) - bswap16s(&temp); + bswap16s((uint16_t *)&temp); cpu_physical_memory_write(T0, (void *) &temp, size); } |