From: rs <> Date: Tue, 11 Nov 2025 20:57:08 +0000 (-0600) Subject: Add default value to reset input on POR block X-Git-Url: https://git.the-white-hart.net/?a=commitdiff_plain;h=f3fc0816ec0c9dd3ac79d67de3c8a662b0e37bac;p=vhdl Add default value to reset input on POR block --- diff --git a/libraries/utility/power_on_reset_opt.vhd b/libraries/utility/power_on_reset_opt.vhd index befa900..73908d7 100644 --- a/libraries/utility/power_on_reset_opt.vhd +++ b/libraries/utility/power_on_reset_opt.vhd @@ -6,7 +6,7 @@ use ieee.std_logic_misc.all; entity power_on_reset_opt is port ( - rst_i: in std_logic; + rst_i: in std_logic := '0'; clk_i: in std_logic; rst_o: out std_logic );