void delay_loop(int useconds)
{
    unsigned int s;
    for (s=0; s<useconds; s++); //where is this code?
}