BACK1:
	MOV	A,@R0			;get dec digit
	ORL	A,#30H			;make it an ascii digit
<b>	MOV	@R1,A	      ;save it TO WHERE R1 is POINTING</b>
	INC	R0			;next digit
<b>	INC	R1			;next</b>
	DJNZ	R2,BACK1		;repeat until the last one
	RET

DATA_DISPLAY:				; since my lcd init is not whats in my book i have to change the data display from whats in it
	ACALL	DELAY
	MOV	A,#91H			; place cursor at thso position
<b>	ACALL	COMNWRT       ; R1 WILL BE CHANGED TO 91H !!!</b>
	ACALL	DELAY
<b>	MOV	A,@R1	      ; Whatever is in location 91H is copied to A </b>
	ACALL	DATAWRT
	ACALL	DELAY
	RET
