generated from maddiebusig/vivado-template-hog
Remove redundant clk_out from enable pulser
Was just passing through
This commit is contained in:
parent
6b441b12ae
commit
26eb01a9e8
@ -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
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user