Skip to content

Commit

Permalink
Fixes #889
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsAsplund committed Feb 27, 2024
1 parent 80d56a3 commit e9400b9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ package body stream_master_pkg is
data : std_logic_vector;
last : boolean := false) is
variable msg : msg_t := new_msg(stream_push_msg);
constant normalized_data : std_logic_vector(data'length-1 downto 0) := data;
-- Variable instead of constant to address issue #889
variable normalized_data : std_logic_vector(data'length-1 downto 0) := data;
begin
push_std_ulogic_vector(msg, normalized_data);
push_boolean(msg, last);
Expand Down

0 comments on commit e9400b9

Please sign in to comment.