2021-07-27 22:24:40 -04:00
|
|
|
//#############################################################################
|
|
|
|
//# Function: Integrated "Or" Clock Gating Cell #
|
|
|
|
//# Copyright: OH Project Authors. ALl rights Reserved. #
|
|
|
|
//# License: MIT (see LICENSE file in OH repository) #
|
|
|
|
//#############################################################################
|
|
|
|
|
2021-07-27 22:55:45 -04:00
|
|
|
module asic_clkicgor #(parameter PROP = "DEFAULT") (
|
2021-07-27 22:24:40 -04:00
|
|
|
input clk,// clock input
|
|
|
|
input te, // test enable
|
|
|
|
input en, // enable
|
|
|
|
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
|