
void main(void)
{
   P1=0xFF;  // Led Off
   delay();  // wait 1 second
   P1=0x00;  // Led On
   while(1); // Loop forever
}
