xref: /netbsd/sys/arch/mvme68k/stand/libbug/delay.c (revision 6550d01e)
1 /*	$NetBSD: delay.c,v 1.3 2008/01/12 09:54:30 tsutsui 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 #include "libbug.h"
11 
12 /* BUG - timing routine */
13 void
14 mvmeprom_delay(int msec)
15 {
16 
17 	MVMEPROM_ARG1(msec);
18 	MVMEPROM_CALL(MVMEPROM_DELAY);
19 }
20