#include void udelay(int usecs) { int i; for(i = 0; i < usecs; i++) outb(i&0xff, 0x80); }