From ecba32121e0c8c45e7466dbf8f16c4ebed98379c Mon Sep 17 00:00:00 2001 From: rs <> Date: Mon, 15 Dec 2025 12:48:06 -0600 Subject: [PATCH] Add initial value to counter --- libraries/dsp/src_counter.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/dsp/src_counter.vhd b/libraries/dsp/src_counter.vhd index 347373a..ddda6e0 100644 --- a/libraries/dsp/src_counter.vhd +++ b/libraries/dsp/src_counter.vhd @@ -20,7 +20,7 @@ end src_counter; architecture behavioral of src_counter is - signal count_reg: unsigned(WIDTH-1 downto 0); + signal count_reg: unsigned(WIDTH-1 downto 0) := (others => '0'); begin -- 2.43.0