use crate::color;
use crate::emu::Emu;
use iced_x86::Instruction;
pub fn execute(emu: &mut Emu, ins: &Instruction, instruction_sz: usize, _rep_step: bool) -> bool {
emu.show_instruction(color!("Green"), ins);
let value0 = match emu.get_operand_value(ins, 0, true) {
Some(v) => v,
None => return false,
};
let value1 = match emu.get_operand_value(ins, 1, true) {
Some(v) => v,
None => return false,
};
emu.flags_mut().f_zf = value1 < value0;
emu.set_operand_value(ins, 0, value0);
true
}