CONVERSION:
	ACALL	BIN_DEC_CONVRT   ; first of two conversions
	ACALL	DEC_ASCI_CONVRT
	RET
	
BIN_DEC_CONVRT:
	MOV	R0,#RAM_ADDR     
	MOV	A,P0             ; move P0 to A. ADC output connected to P0. ADC output 
	MOV	B,#10            ;    is currently tri-stated. Essentially, 
	DIV	AB               ;    P0 is not connected to anything. Contents of 
	MOV	@R0,B            ;    the Accumulator are indeterminate.
	INC	R0
	MOV	B,#10
	DIV	AB
	MOV	@R0,B
	INC	R0
	MOV	@R0,A
	RET
