Arm mulxy insn fix (Paul Brook)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1683 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-12-04 18:56:28 +00:00
parent 80337b66a8
commit ee0971849e

View File

@ -1021,11 +1021,11 @@ static inline void gen_jmp (DisasContext *s, uint32_t dest)
static inline void gen_mulxy(int x, int y)
{
if (x & 2)
if (x)
gen_op_sarl_T0_im(16);
else
gen_op_sxth_T0();
if (y & 1)
if (y)
gen_op_sarl_T1_im(16);
else
gen_op_sxth_T1();