mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-03 21:09:12 +00:00 
			
		
		
		
	Add $_NMUX_, add "abc -g cmos", add proper cmos cell costs
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
		
							parent
							
								
									44a9dcbbbf
								
							
						
					
					
						commit
						023086bd46
					
				
					 19 changed files with 174 additions and 42 deletions
				
			
		| 
						 | 
				
			
			@ -228,6 +228,25 @@ output Y;
 | 
			
		|||
assign Y = S ? B : A;
 | 
			
		||||
endmodule
 | 
			
		||||
 | 
			
		||||
//  |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
 | 
			
		||||
//-
 | 
			
		||||
//-     $_NMUX_ (A, B, S, Y)
 | 
			
		||||
//-
 | 
			
		||||
//- A 2-input inverting MUX gate.
 | 
			
		||||
//-
 | 
			
		||||
//- Truth table:    A B S | Y
 | 
			
		||||
//-                -------+---
 | 
			
		||||
//-                 0 - 0 | 1
 | 
			
		||||
//-                 1 - 0 | 0
 | 
			
		||||
//-                 - 0 1 | 1
 | 
			
		||||
//-                 - 1 1 | 0
 | 
			
		||||
//-
 | 
			
		||||
module \$_NMUX_ (A, B, S, Y);
 | 
			
		||||
input A, B, S;
 | 
			
		||||
output Y;
 | 
			
		||||
assign Y = S ? !B : !A;
 | 
			
		||||
endmodule
 | 
			
		||||
 | 
			
		||||
//  |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
 | 
			
		||||
//-
 | 
			
		||||
//-     $_MUX4_ (A, B, C, D, S, T, Y)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue