From b5719f36377bab0ce43f1961f539120c96cfd743 Mon Sep 17 00:00:00 2001 From: rs <> Date: Sun, 14 Dec 2025 16:37:52 -0600 Subject: [PATCH] Okay fine, this can be unsigned --- libraries/dsp/src_fracstep.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/dsp/src_fracstep.vhd b/libraries/dsp/src_fracstep.vhd index 7a5e262..69e3f92 100644 --- a/libraries/dsp/src_fracstep.vhd +++ b/libraries/dsp/src_fracstep.vhd @@ -34,7 +34,7 @@ begin if rst_i = '1' then count_reg <= (others => '0'); elsif rdy_i = '1' then - count_reg <= count_reg + signed(inc_i); + count_reg <= count_reg + unsigned(inc_i); end if; end if; end process; -- 2.43.0