plan 9 kernel history: overview | file list | diff list

1992/0509/power/io.h (diff list | history)

1992/0508/sys/src/9/power/io.h:12,201992/0509/sys/src/9/power/io.h:12,21 (short | long | prev | next)
1992/0508    
	LEDhotintr=	1<<0, 
	LEDclock=	1<<1, 
	LEDfault=	1<<2, 
1992/0509    
	LEDpulse=	1<<7, 
1992/0508    
}; 
#define LEDON(x) { m->ledval |= x; *LED = m->ledval; } 
#define LEDOFF(x) { m->ledval &= ~x; *LED = m->ledval; } 
1992/0509    
#define LEDON(x) 	(m->ledval &= ~x, *LED = m->ledval) 
#define LEDOFF(x) 	(m->ledval |= x, *LED = m->ledval) 
1990/0227    
 
typedef struct SBCC	SBCC; 
typedef struct Timer	Timer; 


source code copyright © 1990-2005 Lucent Technologies; see license
Plan 9 distribution
comments to russ cox (rsc@swtch.com)