BLINKING BETWEEN 2 LED

//DELAYS USING LIBRARY


#include<p18f4580.h>
#include<delays.h>
#pragma config OSC=HS
#pragma config LVP=OFF
void main()
{
    TRISB=0x00;
    PORTB=0x00;
    while(1)
        {
        PORTB = 0x40;
        Delay10KTCYx(225);
        PORTB =0x80;
        Delay10KTCYx(225);
        }
}
KEMBALI KEATAS