1 /* $NetBSD: psl.h,v 1.3 2010/02/02 19:16:57 phx Exp $ */ 2 3 #ifndef _AMIGAPPC_PSL_H_ 4 #define _AMIGAPPC_PSL_H_ 5 6 #include <powerpc/psl.h> 7 8 /* 9 * Compatibility with m68k/include/psl.h for amiga/68k devices. 10 * Has to match with interrupt IPLs in amigappc_install_handlers(). 11 */ 12 #define spl1() splbio() 13 #define spl2() splbio() 14 #define spl3() spltty() 15 #define spl4() splaudio() 16 #define spl5() splserial() 17 #define spl6() splserial() 18 #define spl7() splhigh() 19 20 #endif /* _AMIGAPPC_PSL_H_ */ 21