Home
last modified time | relevance | path

Searched refs:F_ZF (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/drivers/bios_emulator/x86emu/
Dops2.c95 return ACCESS_FLAG(F_ZF); in x86emu_check_jump_condition()
99 return !ACCESS_FLAG(F_ZF); in x86emu_check_jump_condition()
103 return ACCESS_FLAG(F_CF) || ACCESS_FLAG(F_ZF); in x86emu_check_jump_condition()
107 return !(ACCESS_FLAG(F_CF) || ACCESS_FLAG(F_ZF)); in x86emu_check_jump_condition()
136 ACCESS_FLAG(F_ZF)); in x86emu_check_jump_condition()
141 ACCESS_FLAG(F_ZF)); in x86emu_check_jump_condition()
195 cond = ACCESS_FLAG(F_ZF); in x86emuOp2_set_byte()
199 cond = !ACCESS_FLAG(F_ZF); in x86emuOp2_set_byte()
203 cond = ACCESS_FLAG(F_CF) || ACCESS_FLAG(F_ZF); in x86emuOp2_set_byte()
207 cond = !(ACCESS_FLAG(F_CF) || ACCESS_FLAG(F_ZF)); in x86emuOp2_set_byte()
[all …]
Dprim_ops.c140 CONDITIONAL_SET_FLAG(res == 0, F_ZF); in set_szp_flags_8()
147 CONDITIONAL_SET_FLAG(res == 0, F_ZF); in set_szp_flags_16()
154 CONDITIONAL_SET_FLAG(res == 0, F_ZF); in set_szp_flags_32()
1218 SET_FLAG(F_ZF); in shl_byte()
1256 SET_FLAG(F_ZF); in shl_word()
1291 SET_FLAG(F_ZF); in shl_long()
1326 SET_FLAG(F_ZF); in shr_byte()
1359 SET_FLAG(F_ZF); in shr_word()
1393 SET_FLAG(F_ZF); in shr_long()
1424 CLEAR_FLAG(F_ZF); in sar_byte()
[all …]
Ddebug.c394 if (ACCESS_FLAG(F_ZF)) in x86emu_dump_regs()
444 if (ACCESS_FLAG(F_ZF)) in x86emu_dump_xregs()
Dops.c2625 if ( (M.x86.mode & SYSMODE_PREFIX_REPE) && (ACCESS_FLAG(F_ZF) == 0) ) break; in x86emuOp_cmps_byte()
2626 if ( (M.x86.mode & SYSMODE_PREFIX_REPNE) && ACCESS_FLAG(F_ZF) ) break; in x86emuOp_cmps_byte()
2677 if ( (M.x86.mode & SYSMODE_PREFIX_REPE) && ACCESS_FLAG(F_ZF) == 0 ) break; in x86emuOp_cmps_word()
2678 if ( (M.x86.mode & SYSMODE_PREFIX_REPNE) && ACCESS_FLAG(F_ZF) ) break; in x86emuOp_cmps_word()
2919 if (ACCESS_FLAG(F_ZF) == 0) in x86emuOp_scas_byte()
2931 if (ACCESS_FLAG(F_ZF)) in x86emuOp_scas_byte()
2981 if (ACCESS_FLAG(F_ZF) == 0) in x86emuOp_scas_word()
2998 if (ACCESS_FLAG(F_ZF)) in x86emuOp_scas_word()
4033 if (M.x86.R_CX != 0 && !ACCESS_FLAG(F_ZF)) /* CX != 0 and !ZF */ in x86emuOp_loopne()
4054 if (M.x86.R_CX != 0 && ACCESS_FLAG(F_ZF)) /* CX != 0 and ZF */ in x86emuOp_loope()
/external/u-boot/drivers/bios_emulator/include/x86emu/
Dregs.h203 #define F_ZF 0x0040 /* ZERO flag */ macro