xref: /original-bsd/sys/hp300/hp300/isr.h (revision 4975c9ea)
1 /*
2  * Copyright (c) 1982, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)isr.h	8.1 (Berkeley) 06/10/93
8  */
9 
10 struct isr {
11 	struct	isr *isr_forw;
12 	struct	isr *isr_back;
13 	int	(*isr_intr)();
14 	int	isr_arg;
15 	int	isr_ipl;
16 };
17 
18 #define	NISR		3
19 #define	ISRIPL(x)	((x) - 3)
20