

; If M0.0 Is High, call the SetClock-subroutine

	banksel m0
	btfss m0,0
	goto noSetClock

	call PCF8583SetClock

noSetClock

; If M0.1 Is High, call the ReadClock-subroutine

	banksel m0
	btfss m0,1
	goto noReadClock

	call PCF8583ReadClock

noReadClock


; If M0.2 Is High, call the ReadTepm-subroutine

	banksel m0
	btfss m0,2
	goto noReadTemp

	call LM75ReadTemp

noReadTemp





