
void delay_ms(volatile unsigned int xcount)
{
    data volatile unsigned int count = xcount;
    for(count *= DELAY_MULTPLR; count > 0; count--) continue;

    return;
}
