PoC.net.mac.RX_DestMAC_Switch

Todo

No documentation available.

Entity Declaration:

 1  generic (
 2    DEBUG                         : boolean                         := FALSE;
 3    MAC_ADDRESSES                 : T_NET_MAC_ADDRESS_VECTOR    := (0 => C_NET_MAC_ADDRESS_EMPTY);
 4    MAC_ADDRESSE_MASKS            : T_NET_MAC_ADDRESS_VECTOR    := (0 => C_NET_MAC_MASK_DEFAULT)
 5  );
 6  port (
 7    Clock                         : in  std_logic;
 8    Reset                         : in  std_logic;
 9
10    In_Valid                      : in  std_logic;
11    In_Data                       : in  T_SLV_8;
12    In_SOF                        : in  std_logic;
13    In_EOF                        : in  std_logic;
14    In_Ack                        : out std_logic;
15
16    Out_Valid                     : out std_logic_vector(MAC_ADDRESSES'length - 1 downto 0);
17    Out_Data                      : out T_SLVV_8(MAC_ADDRESSES'length - 1 downto 0);
18    Out_SOF                       : out std_logic_vector(MAC_ADDRESSES'length - 1 downto 0);
19    Out_EOF                       : out std_logic_vector(MAC_ADDRESSES'length - 1 downto 0);
20    Out_Ack                       : in  std_logic_vector(MAC_ADDRESSES'length - 1 downto 0);
21    Out_Meta_DestMACAddress_rst   : in  std_logic_vector(MAC_ADDRESSES'length - 1 downto 0);
22    Out_Meta_DestMACAddress_nxt   : in  std_logic_vector(MAC_ADDRESSES'length - 1 downto 0);
23    Out_Meta_DestMACAddress_Data  : out T_SLVV_8(MAC_ADDRESSES'length - 1 downto 0)
24  );
25end entity;