1
0
mirror of synced 2026-02-03 07:30:41 +00:00
Files
YosysHQ.yosys/techlibs/greenpak4/cells_latch.v

16 lines
248 B
Verilog

module $_DLATCH_P_(input E, input D, output Q);
GP_DLATCH _TECHMAP_REPLACE_ (
.D(D),
.nCLK(!E),
.Q(Q)
);
endmodule
module $_DLATCH_N_(input E, input D, output Q);
GP_DLATCH _TECHMAP_REPLACE_ (
.D(D),
.nCLK(E),
.Q(Q)
);
endmodule