mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-30 19:22:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
| module $_DLATCH_P_(input E, input D, output Q);
 | |
|     LDCP _TECHMAP_REPLACE_ (
 | |
|         .D(D),
 | |
|         .G(E),
 | |
|         .Q(Q),
 | |
|         .PRE(1'b0),
 | |
|         .CLR(1'b0)
 | |
|         );
 | |
| endmodule
 | |
| 
 | |
| module $_DLATCH_N_(input E, input D, output Q);
 | |
|     LDCP_N _TECHMAP_REPLACE_ (
 | |
|         .D(D),
 | |
|         .G(E),
 | |
|         .Q(Q),
 | |
|         .PRE(1'b0),
 | |
|         .CLR(1'b0)
 | |
|         );
 | |
| endmodule
 |