PoC.net.icmpv6.RX

Todo

No documentation available.

Entity Declaration:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
entity icmpv6_RX is
  port (
    Clock                     : in  std_logic;                                  --
    Reset                     : in  std_logic;                                  --
    
    Error                     : out std_logic;
    
    RX_Valid                  : in  std_logic;
    RX_Data                   : in  T_SLV_8;
    RX_SOF                    : in  std_logic;
    RX_EOF                    : in  std_logic;
    RX_Ack                    : out std_logic;
    
    Received_EchoRequest      : out std_logic
  );
end entity;