SAIFIINDUSTRIES's picture
Add Batch 2 with 10 repos
198fb2a verified
Raw
History Blame
191 Bytes
module OPENROAD_CLKGATE (CK, E, GCK);
input CK;
input E;
output GCK;
`ifdef OPENROAD_CLKGATE
CLKGATE_X1 latch (.CK (CK), .E(E), .GCK(GCK));
`else
assign GCK = CK;
`endif
endmodule