JC
Operand:
label
Short Jump if Carry flag is set to 1.
Algorithm:
if CF = 1 then jump
Example:
include 'emu8086.inc'
#make_COM#
ORG 100h
MOV AL, 255
ADD AL, 1
JC label1
PRINT 'no carry.'
JMP exit
label1:
PRINT 'has carry.'
exit:
RET
Flags:
C Z S O P A
unchanged