xref: /csrg-svn/sys/tahoe/align/Abicpsw.c (revision 45760)
1*45760Sbostic /*-
2*45760Sbostic  * Copyright (c) 1986 The Regents of the University of California.
3*45760Sbostic  * All rights reserved.
4*45760Sbostic  *
5*45760Sbostic  * This code is derived from software contributed to Berkeley by
6*45760Sbostic  * Computer Consoles Inc.
7*45760Sbostic  *
8*45760Sbostic  * %sccs.include.redist.c%
9*45760Sbostic  *
10*45760Sbostic  *	@(#)Abicpsw.c	7.1 (Berkeley) 12/06/90
11*45760Sbostic  */
1229591Ssam 
1345699Sbostic #include "align.h"
bicpsw(infop)1429591Ssam bicpsw(infop)	process_info *infop;
1529591Ssam /*
1629591Ssam /*	Bits clear in PSW.
1729591Ssam /*
1829591Ssam /*************************************/
1929591Ssam {
2029591Ssam 	register int mask;
2129591Ssam 
2229591Ssam 	mask = operand(infop,0)->data;
2329591Ssam 	psl &= ~(mask & 0x7f);
2429591Ssam }
25