X86-assembly/Instructions/jl

From aldeid
Jump to navigation Jump to search
You are here:
jl

Description

  • The jl instruction is a conditional jump that follows a test.
  • It performs a signed comparison jump after a cmp if the destination operand is less than the source operand.

Syntax

jl destination, source

Examples

cmp    bl, 78h
jl     short loc_402B1D    ; if bl < 78h, jump to loc_402B1D

Comments