sim-card
/
qemu
Archived
10
0
Fork 0

Fix "blx lr" (Lauro Venancio).

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2979 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
pbrook 2007-06-11 18:59:35 +00:00
parent 2f2ecb83d7
commit 39524770b2
1 changed files with 2 additions and 2 deletions

View File

@ -2325,9 +2325,9 @@ static void disas_arm_insn(CPUState * env, DisasContext *s)
/* branch link/exchange thumb (blx) */
val = (uint32_t)s->pc;
gen_op_movl_T0_im(val);
gen_movl_reg_T0(s, 14);
gen_op_movl_T1_im(val);
gen_movl_T0_reg(s, rm);
gen_movl_reg_T1(s, 14);
gen_bx(s);
break;
case 0x5: /* saturating add/subtract */