PoC.net.arp.BroadCast_Receiver

Todo

No documentation available.

Entity Declaration:

 1  );
 2  port (
 3    Clock                       : in  std_logic;                                  --
 4    Reset                       : in  std_logic;                                  --
 5
 6    RX_Valid                    : in  std_logic;
 7    RX_Data                     : in  T_SLV_8;
 8    RX_SOF                      : in  std_logic;
 9    RX_EOF                      : in  std_logic;
10    RX_Ack                      : out std_logic;
11    RX_Meta_rst                 : out std_logic;
12    RX_Meta_SrcMACAddress_nxt   : out std_logic;
13    RX_Meta_SrcMACAddress_Data  : in  T_SLV_8;
14    RX_Meta_DestMACAddress_nxt  : out std_logic;
15    RX_Meta_DestMACAddress_Data : in  T_SLV_8;
16
17    Clear                       : in  std_logic;
18    Error                       : out std_logic;
19
20    RequestReceived             : out std_logic;
21    Address_rst                 : in  std_logic;
22    SenderMACAddress_nxt        : in  std_logic;
23    SenderMACAddress_Data       : out T_SLV_8;
24    SenderIPAddress_nxt         : in  std_logic;
25    SenderIPAddress_Data        : out T_SLV_8;
26    TargetIPAddress_nxt         : in  std_logic;
27    TargetIPAddress_Data        : out T_SLV_8
28  );
29end entity;
30
31
32architecture rtl of arp_BroadCast_Receiver is
33  attribute FSM_ENCODING            : string;