xref: /original-bsd/sys/pmax/dev/pdma.h (revision 3705696b)
1 /*-
2  * Copyright (c) 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Ralph Campbell and Rick Macklem.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)pdma.h	8.1 (Berkeley) 06/10/93
11  */
12 
13 struct pdma {
14 	void	*p_addr;
15 	char	*p_mem;
16 	char	*p_end;
17 	int	p_arg;
18 	void	(*p_fcn)();
19 };
20