Introduction - If you have any usage issues, please Google them yourself
ne2000 driver program on dp83902a MCU
#ifdef CONFIG_DRIVER_NE2000
static void my_udelay(long us) {
long tmo
tmo = get_timer (0) + us * CFG_HZ / 1000000 /* will this be much greater than 0 ? */
while (get_timer (0) < tmo)
}