PoC.net.icmpv6.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
24
25
26
entity icmpv6_Wrapper is
  port (
    Clock                             : in  std_logic;
    Reset                             : in  std_logic;
    
    IP_TX_Valid                       : out std_logic;
    IP_TX_Data                        : out T_SLV_8;
    IP_TX_SOF                         : out std_logic;
    IP_TX_EOF                         : out std_logic;
    IP_TX_Ack                         : in  std_logic;
    IP_TX_Meta_rst                    : in  std_logic;
    IP_TX_Meta_DestIPv6Address_nxt    : in  std_logic;
    IP_TX_Meta_DestIPv6Address_Data   : out T_SLV_8;
    
    IP_RX_Valid                       : in  std_logic;
    IP_RX_Data                        : in  T_SLV_8;
    IP_RX_SOF                         : in  std_logic;
    IP_RX_EOF                         : in  std_logic;
    IP_RX_Ack                         : out std_logic--;
    
--    Command                   : in  T_ETHERNET_ICMPV6_COMMAND;
--    Status                    : out T_ETHERNET_ICMPV6_STATUS


  );
end entity;