diff --git a/pwm_block/src/clk_enable_pulser.v b/pwm_block/src/clk_enable_pulser.v index 9025905..0ab64d3 100644 --- a/pwm_block/src/clk_enable_pulser.v +++ b/pwm_block/src/clk_enable_pulser.v @@ -2,7 +2,6 @@ module clk_enable_pulser ( input clk, input rst, input [3:0] sel, - output wire clk_out, output wire en_out ); @@ -15,7 +14,6 @@ module clk_enable_pulser ( else count <= count + 1; end - assign clk_out = clk; assign en_out = count[sel]; endmodule