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

Added missing rising_edge(dp_clk) in p_parameters process.

parent 7e02d34a
No related branches found
No related tags found
1 merge request!216Resolve L2SDP-661
Pipeline #26098 passed
......@@ -309,6 +309,7 @@ BEGIN
-- Derive and pipeline dynamic parameters
p_parameters : PROCESS(dp_clk)
BEGIN
IF rising_edge(dp_clk) THEN
gn_index_reg <= gn_index;
pn_index <= func_sdp_gn_index_to_pn_index(gn_index_reg);
offset_rn <= TO_UINT(ring_info.O_rn);
......@@ -322,6 +323,7 @@ BEGIN
remote_gn <= offset_rn + remote_rn;
remote_pn <= func_sdp_gn_index_to_pn_index(remote_gn);
remote_si_offset <= remote_pn * c_sdp_S_pn;
END IF;
END PROCESS;
-- Assign application header data_id for different statistic types, use
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment