X86-assembly/Instructions/jle

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

Description

  • The jle 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 or equal to the source operand.

Syntax

jle destination, source

Examples

cmp    bl, 78h
jle    short loc_402B1D    ; if bl ≤ 78h, jump to loc_402B1D

Comments