I'm trying to program a pic16F877A so that it would flash a LED on and off. I wrote the following program but I can't seem to get it to work. Any clues on where the problem lies or what I might have done wrong?


Thank you

Symbol LED = 0
TRISC = %11111110 'RC0 set as output
main:
High LED
Pause 1000
LOW LED
Pause 1000
goto main
End