Command: CMOVGE - Move if greater or equal (SF=OF)
Arguments: DEST: general-purpose register (16 or 32 bit); SRC: general purpose register (16 or 32 bit) or memory location
Usage: CMOVGE DEST,SRC
Effects: If (SF=OF): DEST := SRC; Copies the source value (second argument) to the destination (first argument) if signflag and overflowflag are equal. Otherwise the programm continues with the next operation.
Flags to be set: none