PoC.net.arp.UniCast_Receiver

Todo

No documentation available.

Entity Declaration:

 1  generic (
 2    ALLOWED_PROTOCOL_IPV4       : boolean                       := TRUE;
 3    ALLOWED_PROTOCOL_IPV6       : boolean                       := FALSE
 4  );
 5  port (
 6    Clock                       : in  std_logic;                                  --
 7    Reset                       : in  std_logic;                                  --
 8
 9    RX_Valid                    : in  std_logic;
10    RX_Data                     : in  T_SLV_8;
11    RX_SOF                      : in  std_logic;
12    RX_EOF                      : in  std_logic;
13    RX_Ack                      : out std_logic;
14    RX_Meta_rst                 : out std_logic;
15    RX_Meta_SrcMACAddress_nxt   : out std_logic;
16    RX_Meta_SrcMACAddress_Data  : in  T_SLV_8;
17    RX_Meta_DestMACAddress_nxt  : out std_logic;
18    RX_Meta_DestMACAddress_Data : in  T_SLV_8;
19
20    Clear                       : in  std_logic;
21    Error                       : out std_logic;
22
23    ResponseReceived            : out std_logic;
24    Address_rst                 : in  std_logic;
25    SenderMACAddress_nxt        : in  std_logic;
26    SenderMACAddress_Data       : out T_SLV_8;
27    SenderIPAddress_nxt         : in  std_logic;
28    SenderIPAddress_Data        : out T_SLV_8;
29    TargetIPAddress_nxt         : in  std_logic;
30    TargetIPAddress_Data        : out T_SLV_8;
31    TargetMACAddress_nxt        : in  std_logic;
32    TargetMACAddress_Data       : out T_SLV_8
33  );
34end entity;