void main()
{
TRISB=0x00; // Set PORTB as output PORT
LATB=0xFF; // Set PORTB high initially (All LEDs on)
while(1)
{
LATB = ~LATB; // Toggle the value of PORTB
Delay_ms(1000); // Delay of 1 sec
}
}
what is the header file for this above program. any bodies can help me friends ?