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

Added debug signal test_offload_data.

parent 37deae19
Branches
No related tags found
1 merge request!179Resolve L2SDP-551
Pipeline #22387 passed
Pipeline: sdptr

#22388

    ......@@ -139,10 +139,11 @@ ARCHITECTURE tb OF tb_sdp_statistics_offload IS
    SIGNAL in_crosslets_info_rec : t_sdp_crosslets_info;
    SIGNAL in_crosslets_info_slv : STD_LOGIC_VECTOR(c_sdp_crosslets_info_reg_w-1 DOWNTO 0);
    SIGNAL offload_data : STD_LOGIC_VECTOR(31 DOWNTO 0);
    SIGNAL offload_data : STD_LOGIC_VECTOR(c_word_w-1 DOWNTO 0); -- 32 bit
    SIGNAL offload_sosi : t_dp_sosi;
    SIGNAL offload_siso : t_dp_siso := c_dp_siso_rst;
    SIGNAL test_offload_data : STD_LOGIC_VECTOR(c_word_w-1 DOWNTO 0); -- 32 bit
    SIGNAL test_offload_sosi : t_dp_sosi := c_dp_sosi_rst;
    SIGNAL test_offload_en : STD_LOGIC := '0';
    SIGNAL test_offload_sop_cnt : NATURAL;
    ......@@ -577,6 +578,7 @@ BEGIN
    ASSERT c_crosslets_info_rec = func_sdp_map_crosslets_info(c_crosslets_info_slv) REPORT "Error in func_sdp_map_crosslets_info()" SEVERITY FAILURE;
    -- To view the 32 bit 1GbE offload data more easily in the Wave window
    offload_data <= offload_sosi.data(31 DOWNTO 0);
    offload_data <= offload_sosi.data(c_word_w-1 DOWNTO 0);
    test_offload_data <= test_offload_sosi.data(c_word_w-1 DOWNTO 0);
    END tb;
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment