1*59475b56SArbel Moshe #include "delay.h" 2*59475b56SArbel Moshe 3*59475b56SArbel Moshe void delay(u64 count) 4*59475b56SArbel Moshe { 5*59475b56SArbel Moshe while (count--) 6*59475b56SArbel Moshe asm volatile("pause"); 7*59475b56SArbel Moshe } 8*59475b56SArbel Moshe 9