提交 ee097184 编写于 作者: B bellard

Arm mulxy insn fix (Paul Brook)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1683 c046a42c-6fe2-441c-8c8c-71466251a162
上级 80337b66
......@@ -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();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册