
	push	dph	;Save base address
	push	dpl
	add	a,dpl	;This adds 22h to 34h, and it may produce a carry.
	mov	dpl,a	;Store the sum in dpl
	clr	a	;Move 00h to the accu
	addc	a,dph	;This adds 00h to 12h, and it propagates the carry to the msb
	mov	dph,a	;Store the sum in dph
	..		;Use the calculated address
	..
	pop	dpl	;Restore base address
	pop	dph
