blob: 7d8d63e35face238efd04f551410ab825063b07e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $OpenBSD: libbug.h,v 1.1 1998/08/22 07:39:55 smurph Exp $ */
/*
* prototypes and such. note that get/put char are in stand.h
*/
void mvmeprom_delay __P((int));
int mvmeprom_diskrd __P((struct mvmeprom_dskio *));
int mvmeprom_diskwr __P((struct mvmeprom_dskio *));
struct mvmeprom_brdid *mvmeprom_getbrdid __P((void));
int peekchar __P((void));
void mvmeprom_outln __P((char *, char *));
void mvmeprom_outstr __P((char *, char *));
void mvmeprom_rtc_rd __P((struct mvmeprom_time *));
/*
* bugcrt stuff
*/
extern struct mvmeprom_args bugargs;
void bugexec __P((void (*)()));
|