Amigos, estoy programando el PIC con CCS COMPILER, Debalo sigue el proyecto. Agradecido.
#include <12F675.h>
#use delay(clock=4000000)
#fuses INTRC_IO, NOWDT, NOPROTECT, NOMCLR
#define BOTAO PIN_A0
#define LED PIN_A5
main()
{
while (!input(BOTAO));
output_high (LED);
delay_ms (1000);
output_low (LED);
delay_ms (1000);
}