mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user