;       The following two instructions jump to IS_EQUAL if A is
;       equal to 5, and fall through to NOT_EQUAL if A is not equal
;       to 5.

	CJNE	A,#5,NOT_EQUAL
	JMP	IS_EQUAL
NOT_EQUAL:

;	Stuff here is skipped A is equal to 5

IS_EQUAL:

; 	Stuff here is executed in either case.
