His schematic shows a F88 but he fixed his code by adding TRISA.0 = 1 (pot on RA1 not RA0) - does not make sense??

Try this for the second block of ASM code

Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;    AUTHORIZATION OF COUNTING
TMR0 = 0
TRISABUF.3 = 1
PORTA = TRISABUF
;;;;;;;;;;;;;;;;;;;;;;;;;;;;    BASE TIME  
COUNT1=TEMPS
PAUSEUS (COUNT*4+2)
PAUSE 5
;;;;;;;;;;;;;;;;;;;;;;;;;;;      STOP OF COUNTING
TRISABUF.3=0
PORTA=TRISABUF
;;;;;;;;;;;;;;;;;;;;;;;;;;;      RECUPERATION OF THE METERS
FHI=TMR0
COUNT1=0
Toggle:
COUNT1=COUNT1+1
PORTA.3=1
PORTA.3=0
IF (FHI-TMR0) = 0 THEN Toggle
COUNT1=(COUNT1^$FF)
FLO=COUNT1+1	
;;;;;;;;;;;;;;;;;;;;;;;;;;;     BASE TIME
Any second opinions on the conversion?

Savnik, what does your program do?