Thanks Mister_E!

We have the PIC running! Brown out was the problem.

Now the data going over the UART is not correct. Here is some test code I am using:

' Setup Auto Epic Settings
@ device pic16F876A, hs_osc, wdt_off, pwrt_on, protect_off
DEFINE OSC 4 ' Set Xtal Frequency

' Setup Hardware for uart
DEFINE HSER_BAUD 9600
DEFINE HSER_RCSTA 90h
DEFINE HSER_TXSTA 24h
DEFINE HSER_SPBRG 129
DEFINE HSER_CLROERR 1

pause 100
HSEROUT ["Startup", 13, 10]

main:
pause 5000
hserout ["Data Out.....", 13,10]
goto main

Thanks again,