mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-03 21:09:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			121 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			121 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
`default_nettype none
 | 
						|
module latch_1990_gate
 | 
						|
  (output wire [1:0] x);
 | 
						|
   assign x = 2'b10;
 | 
						|
endmodule // latch_1990_gate
 | 
						|
 |