Remove redundant clk_out from enable pulser

Was just passing through
This commit is contained in:
Madeline Busig 2025-12-03 00:04:40 -08:00
parent 6b441b12ae
commit 26eb01a9e8

View File

@ -2,7 +2,6 @@ module clk_enable_pulser (
input clk, input clk,
input rst, input rst,
input [3:0] sel, input [3:0] sel,
output wire clk_out,
output wire en_out output wire en_out
); );
@ -15,7 +14,6 @@ module clk_enable_pulser (
else count <= count + 1; else count <= count + 1;
end end
assign clk_out = clk;
assign en_out = count[sel]; assign en_out = count[sel];
endmodule endmodule