PoC.net.arp.IPPoolΒΆ

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
entity arp_IPPool is
  generic (
    IPPOOL_SIZE                   : positive;
    INITIAL_IPV4ADDRESSES         : T_NET_IPV4_ADDRESS_VECTOR     := (0 to 7 => C_NET_IPV4_ADDRESS_EMPTY)
  );
  port (
    Clock                         : in  std_logic;                                  --
    Reset                         : in  std_logic;                                  --

--    Command                       : in  T_ETHERNET_ARP_IPPOOL_COMMAND;
--    IPv4Address                   : in  T_NET_IPV4_ADDRESS;
--    MACAddress                    : in  T_ETHERNET_MAC_ADDRESS;

    Lookup                        : in  std_logic;
    IPv4Address_rst               : out std_logic;
    IPv4Address_nxt               : out std_logic;
    IPv4Address_Data              : in  T_SLV_8;

    PoolResult                    : out T_CACHE_RESULT
  );
end entity;