152130Smckusick /* 252130Smckusick * Copyright (c) 1992 Regents of the University of California. 352130Smckusick * All rights reserved. 452130Smckusick * 552130Smckusick * This code is derived from software contributed to Berkeley by 652130Smckusick * Ralph Campbell. 752130Smckusick * 852130Smckusick * %sccs.include.redist.c% 952130Smckusick * 10*52753Sralph * @(#)pdma.h 7.2 (Berkeley) 02/29/92 1152130Smckusick */ 1252130Smckusick 1352130Smckusick struct pdma { 1452130Smckusick dcregs *p_addr; 1552130Smckusick char *p_mem; 1652130Smckusick char *p_end; 1752130Smckusick int p_arg; 18*52753Sralph void (*p_fcn)(); 1952130Smckusick }; 20