PoC.net.arp.Tester

Todo

No documentation available.

Entity Declaration:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
entity arp_Tester is
  generic (
    CLOCK_FREQ                  : FREQ                                  := 125 MHz;
    ARP_LOOKUP_INTERVAL         : time                                  := 100 ms
  );
  port (
    Clock                       : in  std_logic;                                  --
    Reset                       : in  std_logic;                                  --
    
    Command                     : in  T_NET_ARP_TESTER_COMMAND;
    Status                      : out T_NET_ARP_TESTER_STATUS;
    
    IPCache_Lookup              : out std_logic;
    IPCache_IPv4Address_rst     : in  std_logic;
    IPCache_IPv4Address_nxt     : in  std_logic;
    IPCache_IPv4Address_Data    : out T_SLV_8;
    
    IPCache_Valid               : in  std_logic;
    IPCache_MACAddress_rst      : out std_logic;
    IPCache_MACAddress_nxt      : out std_logic;
    IPCache_MACAddress_Data     : in  T_SLV_8
  );
end entity;