blob: ad07862250994fe75ca1577dc0de8dcaaae61de9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $OpenBSD: bugio.h,v 1.17 2011/03/23 16:54:36 pirofti Exp $ */
#ifndef _MACHINE_BUGIO_H_
#define _MACHINE_BUGIO_H_
#include <machine/prom.h>
void buginit(void);
char buginchr(void);
void bugpcrlf(void);
void bugoutchr(int);
void bugreturn(void);
void bugbrdid(struct mvmeprom_brdid *);
void bugdiskrd(struct mvmeprom_dskio *);
int spin_cpu(cpuid_t, vaddr_t);
#endif /* _MACHINE_BUGIO_H_ */
|