1 /* $NetBSD: delay.c,v 1.1 1996/05/17 19:31:49 chuck Exp $ */ 2 3 /* 4 * bug routines -- assumes that the necessary sections of memory 5 * are preserved. 6 */ 7 #include <sys/types.h> 8 #include <machine/prom.h> 9 10 /* BUG - timing routine */ 11 void 12 mvmeprom_delay(msec) 13 int msec; 14 { 15 MVMEPROM_ARG1(msec); 16 MVMEPROM_CALL(MVMEPROM_DELAY); 17 } 18