1
0
mirror of synced 2026-01-21 02:18:17 +00:00
2021-04-17 20:54:58 +02:00

12 lines
197 B
Verilog

(* abc9_flop, lib_whitebox *)
module $__PP3_DFFEPC_SYNCONLY (
output Q,
input D,
input CLK,
input EN,
);
dffepc ff (.Q(Q), .D(D), .CLK(CLK), .EN(EN), .PRE(1'b0), .CLR(1'b0));
endmodule