X86-assembly/Instructions/jge

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

Description

  • The jge instruction is a conditional jump that follows a test.
  • It performs a signed comparison jump after a cmp if the destination operand is greater than or equal to the source operand

Syntax

jg destination, source

Examples

cmp    bl, 78h
jg     short loc_402B1D    ; if bl ≥ 78h, jump to loc_402B1D

Comments