blob: fe99ff8a49cda09762e3a3360f2c8b5cc8d4779d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $OpenBSD: bug.h,v 1.6 2001/08/12 12:03:02 heko Exp $ */
#ifndef __MACHINE_BUG_H__
#define __MACHINE_BUG_H__
#include <machine/bugio.h>
struct bugenv {
int clun;
int dlun;
int ipl;
int ctlr;
int (*entry)();
int cfgblk;
char *argstart;
char *argend;
};
#endif /* __MACHINE_BUG_H__ */
|