program helloworld04 ' Declarations section main: ' Main program LED_Blinking TRISA = 0 ' set direction to be output TRISB = 0 ' set direction to be output TRISC = 0 ' set direction to be output while TRUE LATA = 0x00 ' Turn OFF LEDs on PORTA LATB = 0x00 ' Turn OFF LEDs on PORTB LATC = 0x00 ' Turn OFF LEDs on PORTC Delay_ms(1000) ' 1 second delay LATC = 0xFF ' Turn ON LEDs on PORTC Delay_ms(1000) ' 1 second delay wend ' Endless loop end.