1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/stdlib/rtl/oh_clockor.v
Andreas.Olofsson e631bfe3f1 Fixing naming error
-The directory should contain rtl only.
-HDL is too broad a term
2022-06-22 11:04:54 -04:00

32 lines
1.0 KiB
Verilog

//#############################################################################
//# Function: Clock 'OR' gate #
//#############################################################################
//# Author: Andreas Olofsson #
//# License: MIT (see LICENSE file in OH! repository) #
//#############################################################################
module oh_clockor
#(parameter N = 2, // number of clock inputs)
parameter SYN = "TRUE", // synthesizable (or not)
parameter TYPE = "DEFAULT" // implementation type
)
(
input [N-1:0] clkin, // clock input
output clkout // clock output
);
generate
if(SYN == "TRUE") begin
assign clkout = |(clkin[N-1:0]);
end
else begin
asic_clockor #(.TYPE(TYPE),
.N(N))
asic_clockor(// Outputs
.clkout (clkout),
// Inputs
.clkin (clkin[N-1:0]));
end
endgenerate
endmodule