PoC.net.icmpv4.TX

Todo

No documentation available.

Entity Declaration:

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