mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-28 18:29:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| read_verilog -icells <<EOT
 | |
| module top(input clk, d, output q);
 | |
| \$_DFF_N_ dffn(.C(clk), .D(d), .Q(q));
 | |
| endmodule
 | |
| EOT
 | |
| write_aiger -zinit -ywmap aiger_dff.out /dev/null
 | |
| !grep -qF negedge aiger_dff.out
 |