Quote Originally Posted by SOMRU
GREETINGS ALL!!

GOSUB SND6


SND6: 'SEND DIGITS TO PIC6
HIGH PORTB.2
PAUSEUS 40
Serout2 PORTB.5 \PORTB.6,84,[TIME,AMP]
LOW PORTB.2
RETURN

THANKS ALL!

In the above chunk, you Gosub SND6, the subroutine returns from it, and then you enter SND6, AND it RETURNS...to...nothing. Unless you've got some other code in there somewhere that you took out for brevity, it looks like you've got one of those deals where you're returning without GoSub'ing. That tends to send the PIC into la'la land. Check it out...
JDG