xref: /original-bsd/sys/vax/uba/pdma.h (revision 0fc6f013)
1 /*
2  * Copyright (c) 1982 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)pdma.h	6.2 (Berkeley) 06/08/85
7  */
8 
9 struct pdma {
10 	struct	dzdevice *p_addr;
11 	char	*p_mem;
12 	char	*p_end;
13 	int	p_arg;
14 	int	(*p_fcn)();
15 };
16