

; 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

	banksel m0
	btfss m0,2
	goto noRamSet1

	call RamSet1

noRamSet1

	banksel m0
	btfss m0,3
   	goto noReadRam1

	call ReadRam1

noReadRam1



