]> git.the-white-hart.net Git - vhdl/commitdiff
Add default value to reset input on POR block
authorrs <>
Tue, 11 Nov 2025 20:57:08 +0000 (14:57 -0600)
committerrs <>
Tue, 11 Nov 2025 20:57:08 +0000 (14:57 -0600)
libraries/utility/power_on_reset_opt.vhd

index befa900f2b04f92d16d62c151db79d666ec8f928..73908d74994e563629fe028e5e72a79d6d4bb1f9 100644 (file)
@@ -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
        );