Well, at last I have success! Thanks to all who pitched in to make this happen. I adjusted the values in the define statements as suggested.

I am still using 22.1184 XTAL. Here is the test code below.

Thanks again.......

Scott


DEFINE OSC 20 ' 20MHz oscillator (22.1184MHz)
DEFINE HSER_RCSTA 90h
DEFINE HSER_TXSTA 24h
DEFINE HSER_BAUD 115200
DEFINE HSER_SPBRG 11
TRISA = 0
TRISB = 0
TRISC = 0

START:

HSerout ["HELLO"]
Pause 500

GoTo START
End