SAIFIINDUSTRIES's picture
Add Batch 2 with 10 repos
198fb2a verified
Raw
History Blame
336 Bytes
module $_DLATCH_P_(input E, input D, output Q);
sg13g2_dlhq_1 _TECHMAP_REPLACE_ (
.D(D),
.GATE(E),
.Q(Q)
);
endmodule
module $_DLATCH_N_(input E, input D, output Q);
sg13g2_dllrq_1 _TECHMAP_REPLACE_ (
.D(D),
.GATE_N(E),
.RESET_B(1'b1),
.Q(Q)
);
endmodule