PoC.net.ndp.Wrapper¶
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 NDP_Wrapper is
generic (
CLOCK_FREQ_MHZ : REAL := 125.0;
INTERFACE_MACADDRESS : T_NET_MAC_ADDRESS := C_NET_MAC_ADDRESS_EMPTY;
INITIAL_IPV6ADDRESSES : T_NET_IPV6_ADDRESS_VECTOR := (others => C_NET_IPV6_ADDRESS_EMPTY);
INITIAL_DESTINATIONCACHE_CONTENT : T_NET_NDP_DESTINATIONCACHE_VECTOR;
INITIAL_NEIGHBORCACHE_CONTENT : T_NET_NDP_NEIGHBORCACHE_VECTOR
);
port (
Clock : in std_logic;
Reset : in std_logic;
NextHop_Query : in std_logic;
NextHop_IPv6Address_rst : out std_logic;
NextHop_IPv6Address_nxt : out std_logic;
NextHop_IPv6Address_Data : in T_SLV_8;
NextHop_Valid : out std_logic;
NextHop_MACAddress_rst : in std_logic;
NextHop_MACAddress_nxt : in std_logic;
NextHop_MACAddress_Data : out T_SLV_8
);
end entity;
|