loop insn fix for non x86 hosts

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1305 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-02-21 20:23:59 +00:00
parent 194884dd6f
commit 0b9dc5e4c3
3 changed files with 9 additions and 6 deletions

View file

@ -1366,6 +1366,11 @@ void OPPROTO op_set_cc_op(void)
CC_OP = PARAM1;
}
void OPPROTO op_mov_T0_cc(void)
{
T0 = cc_table[CC_OP].compute_all();
}
/* XXX: clear VIF/VIP in all ops ? */
void OPPROTO op_movl_eflags_T0(void)