xref: /netbsd-src/sys/arch/mvme68k/stand/libbug/rtc_rd.c (revision a07f7c80690d0af05ca7630aebc638f51f3185e1)
1 /*	$NetBSD: rtc_rd.c,v 1.3 2008/01/12 09:54:31 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 void
mvmeprom_rtc_rd(struct mvmeprom_time * ptime)13 mvmeprom_rtc_rd(struct mvmeprom_time *ptime)
14 {
15 
16 	MVMEPROM_ARG1(ptime);
17 	MVMEPROM_CALL(MVMEPROM_RTC_RD);
18 }
19