Ok, here is what I have


DEFINE OSC 20
TRISC = %10111111 ' Set TX (PortC.6) to out, rest in
TRISB = %00010000 ' Set TX (PortB.5) to in, rest outputs
TRISA = %01111111
SPBRG = 25 ' Set baud rate to 2400
RCSTA = %10010000 ' Enable serial port and continuous receive
TXSTA = %00100000 ' Enable transmit and asynchronous mode
INTCON2.7 = 0

pinin VAR PORTB.4 ' Define pinin as PORTB.4
pinout VAR PORTB.5 ' Define pinout as PORTB.5

how do I setup the SEROUT command to send "This Is a Test" ?
how fo I setup the SERIN command to receive "Test Received" ?