Function goto_if

Source
pub fn goto_if(cpu: &mut Cpu, scheme: InstructionScheme) -> OperationResult<()>
Expand description

§0x010A goto_if:CMP direct:32

Jumps to a target address if the last comparison corresponds the selected operator.

§Target

  • CMP : LT(<) / LE(<=) / NE(!=) / EQ(==) / GE(>=) / GT(>)

§Arguments

  • The address to jump to.

§Errors