Skip to content
Snippets Groups Projects
Commit d514e092 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Use c_input_rst to avoid initial X in sim.

parent 784de11e
No related branches found
No related tags found
1 merge request!283Resolve L2SDP-696
Pipeline #36695 passed
......@@ -212,6 +212,8 @@ ARCHITECTURE str OF sdp_statistics_offload IS
payload_err : STD_LOGIC;
END RECORD;
CONSTANT c_input_rst : t_input := (0, 0, (OTHERS=>'0'), 0, c_sdp_crosslets_info_rst, 0, '0'); -- to avoid initial 'X' in sim
-- Offload control
TYPE t_reg IS RECORD
packet_count : NATURAL RANGE 0 TO c_nof_packets_max;
......@@ -230,9 +232,9 @@ ARCHITECTURE str OF sdp_statistics_offload IS
SIGNAL p : t_parameters;
SIGNAL reg_input : t_input;
SIGNAL prev_input : t_input;
SIGNAL hdr_input : t_input;
SIGNAL reg_input : t_input := c_input_rst;
SIGNAL prev_input : t_input := c_input_rst;
SIGNAL hdr_input : t_input := c_input_rst;
SIGNAL r : t_reg;
SIGNAL nxt_r : t_reg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment