From: rs <> Date: Sun, 14 Dec 2025 22:37:52 +0000 (-0600) Subject: Okay fine, this can be unsigned X-Git-Url: https://git.the-white-hart.net/?a=commitdiff_plain;h=b5719f36377bab0ce43f1961f539120c96cfd743;p=vhdl Okay fine, this can be unsigned --- 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;