Skip to content

Commit

Permalink
fix(network_mod): width of demo/testing ports
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepan Friedl committed Nov 11, 2024
1 parent f1cd361 commit 36de54a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/comp/eth/network_mod/network_mod_ent.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ port(

-- This interface is to transmit Channel IDs and Timestamps of packets
-- from the APP Core to the demo/testing logic in the Network Mod Core (E-Tile).
ETH_TX_MVB_CHANNEL : in std_logic_vector(ETH_PORTS*REGIONS*max(1,log2(TX_DMA_CHANNELS))-1 downto 0);
ETH_TX_MVB_TIMESTAMP : in std_logic_vector(ETH_PORTS*REGIONS*48-1 downto 0);
ETH_TX_MVB_VLD : in std_logic_vector(ETH_PORTS*REGIONS-1 downto 0);
ETH_TX_MVB_CHANNEL : in std_logic_vector(ETH_STREAMS*REGIONS*max(1,log2(TX_DMA_CHANNELS))-1 downto 0);
ETH_TX_MVB_TIMESTAMP : in std_logic_vector(ETH_STREAMS*REGIONS*48-1 downto 0);
ETH_TX_MVB_VLD : in std_logic_vector(ETH_STREAMS*REGIONS-1 downto 0);

-- =====================================================================
-- TX interface (Packets received from Ethernet)
Expand Down

0 comments on commit 36de54a

Please sign in to comment.