From 89cfcb83627c577b46908289610ff2c67147a466 Mon Sep 17 00:00:00 2001 From: Eric Kooistra <kooistra@astron.nl> Date: Tue, 6 Feb 2024 10:36:56 +0100 Subject: [PATCH] Add default for input in_aux. --- libraries/base/dp/src/vhdl/dp_fifo_dc_arr.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/base/dp/src/vhdl/dp_fifo_dc_arr.vhd b/libraries/base/dp/src/vhdl/dp_fifo_dc_arr.vhd index 5bc9dffb7f..5a6d2b1441 100644 --- a/libraries/base/dp/src/vhdl/dp_fifo_dc_arr.vhd +++ b/libraries/base/dp/src/vhdl/dp_fifo_dc_arr.vhd @@ -68,7 +68,7 @@ entity dp_fifo_dc_arr is -- ST sink snk_out_arr : out t_dp_siso_arr(g_nof_streams - 1 downto 0); snk_in_arr : in t_dp_sosi_arr(g_nof_streams - 1 downto 0); - in_aux : in std_logic_vector(g_aux_w - 1 downto 0); + in_aux : in std_logic_vector(g_aux_w - 1 downto 0) := (others => '0'); -- ST source src_in_arr : in t_dp_siso_arr(g_nof_streams - 1 downto 0) := (others => c_dp_siso_rdy); src_out_arr : out t_dp_sosi_arr(g_nof_streams - 1 downto 0); -- GitLab