PoC.net.icmpv4.TX

Todo

No documentation available.

Entity Declaration:

 1  generic (
 2    DEBUG                         : boolean                     := FALSE;
 3    SOURCE_IPV4ADDRESS            : T_NET_IPV4_ADDRESS          := C_NET_IPV4_ADDRESS_EMPTY
 4  );
 5  port (
 6    Clock                         : in  std_logic;                                  --
 7    Reset                         : in  std_logic;                                  --
 8    -- CSE interface
 9    Command                       : in  T_NET_ICMPV4_TX_COMMAND;
10    Status                        : out T_NET_ICMPV4_TX_STATUS;
11    Error                         : out T_NET_ICMPV4_TX_ERROR;
12    -- OUT port
13    Out_Valid                     : out std_logic;
14    Out_Data                      : out T_SLV_8;
15    Out_SOF                       : out std_logic;
16    Out_EOF                       : out std_logic;
17    Out_Ack                       : in  std_logic;
18    Out_Meta_rst                  : in  std_logic;
19    Out_Meta_SrcIPv4Address_nxt   : in  std_logic;
20    Out_Meta_SrcIPv4Address_Data  : out T_SLV_8;
21    Out_Meta_DestIPv4Address_nxt  : in  std_logic;
22    Out_Meta_DestIPv4Address_Data : out T_SLV_8;
23    Out_Meta_Length               : out T_SLV_16;
24    -- IN port
25    In_Meta_rst                   : out std_logic;
26    In_Meta_IPv4Address_nxt       : out std_logic;
27    In_Meta_IPv4Address_Data      : in  T_SLV_8;
28    In_Meta_Type                  : in  T_SLV_8;
29    In_Meta_Code                  : in  T_SLV_8;
30    In_Meta_Identification        : in  T_SLV_16;
31    In_Meta_SequenceNumber        : in  T_SLV_16;
32    In_Meta_Payload_nxt           : out std_logic;
33    In_Meta_Payload_last          : in  std_logic;
34    In_Meta_Payload_Data          : in  T_SLV_8
35  );
36end entity;