/* $OpenBSD: delay.c,v 1.2 2001/07/04 08:31:34 niklas Exp $ */ /* * bug routines -- assumes that the necessary sections of memory * are preserved. */ #include #include /* BUG - timing routine */ void mvmeprom_delay(msec) int msec; /* This is r3 */ { asm volatile ("mr 3, %0" :: "r"(msec)); MVMEPROM_CALL(MVMEPROM_DELAY); }