PoC.net.arp.IPPool

Todo

No documentation available.

Entity Declaration:

 1  generic (
 2    IPPOOL_SIZE                   : positive;
 3    INITIAL_IPV4ADDRESSES         : T_NET_IPV4_ADDRESS_VECTOR     := (0 to 7 => C_NET_IPV4_ADDRESS_EMPTY)
 4  );
 5  port (
 6    Clock                         : in  std_logic;                                  --
 7    Reset                         : in  std_logic;                                  --
 8
 9--    Command                       : in  T_ETHERNET_ARP_IPPOOL_COMMAND;
10--    IPv4Address                   : in  T_NET_IPV4_ADDRESS;
11--    MACAddress                    : in  T_ETHERNET_MAC_ADDRESS;
12
13    Lookup                        : in  std_logic;
14    IPv4Address_rst               : out std_logic;
15    IPv4Address_nxt               : out std_logic;
16    IPv4Address_Data              : in  T_SLV_8;
17
18    PoolResult                    : out T_CACHE_RESULT
19  );
20end entity;