From 26eb01a9e831e152b6528c76f338400102e04bc1 Mon Sep 17 00:00:00 2001 From: Madeline Busig Date: Wed, 3 Dec 2025 00:04:40 -0800 Subject: [PATCH] Remove redundant clk_out from enable pulser Was just passing through --- pwm_block/src/clk_enable_pulser.v | 2 -- 1 file changed, 2 deletions(-) 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