Quote Originally Posted by Russ Kincaid
I am using 16F627A, I started the program with:
symbol PortA = 5
symbol TrisA = $85
The compiler reports: "syntax error"; what is wrong?

Try this:
TRISA = %10000101
PORTA = %00000101

Arch