Short Jump if CX register is 0.Algorithm: if CX = 0 then jump
Short Jump if CX register is 0.
Algorithm: if CX = 0 then jump
JCXZ label
include 'emu8086.inc' ORG 100h MOV CX, 0 JCXZ label1 PRINT 'CX is not zero.' JMP exit label1: PRINT 'CX is zero.' exit: RET