
	add	a,dpl	;This adds 22h to 34h, and it may produce a carry.
	mov	dpl,a	;Store the sum in dpl
	jnc	noinc
	inc	dph	;This propagates the carry to the msb
noinc:	..		;Use the calculated address
	..
