1 2 3 4 5 6 7 8 9 10
#include <arch/io.h> #include <delay.h> void udelay(unsigned usecs) { int i; for(i = 0; i < usecs; i++) inb(0x80); }