1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-02-07 06:44:09 +08:00
oh/asiclib/hdl/asic_clkicgand.v
aolofsson 3dbb3755af Adding asiclib
-Represent set of cells that need hard coded cells or hard coded gate level designs.
2021-07-27 22:24:40 -04:00

24 lines
723 B
Verilog

//#############################################################################
//# Function: Integrated "And" Clock Gating Cell (And) #
//# Copyright: OH Project Authors. ALl rights Reserved. #
//# License: MIT (see LICENSE file in OH repository) #
//#############################################################################
module asic_clkicgand
(
input clk, // clock input
input te, // test enable
input en, // enable (from positive edge FF)
output eclk // enabled clock output
);
reg en_stable;
always @ (clk or en or te)
if (~clk)
en_stable <= en | te;
assign eclk = clk & en_stable;
endmodule