PoC.net.ipv4.RX

Todo

No documentation available.

Entity Declaration:

 1  port (
 2    Clock                            : in  std_logic;                  --
 3    Reset                            : in  std_logic;                  --
 4    -- STATUS port
 5    Error                            : out std_logic;
 6    -- IN port
 7    In_Valid                        : in  std_logic;
 8    In_Data                          : in  T_SLV_8;
 9    In_SOF                          : in  std_logic;
10    In_EOF                          : in  std_logic;
11    In_Ack                          : out std_logic;
12    In_Meta_rst                      : out std_logic;
13    In_Meta_SrcMACAddress_nxt        : out std_logic;
14    In_Meta_SrcMACAddress_Data      : in  T_SLV_8;
15    In_Meta_DestMACAddress_nxt      : out std_logic;
16    In_Meta_DestMACAddress_Data      : in  T_SLV_8;
17    In_Meta_EthType                  : in  T_SLV_16;
18    -- OUT port
19    Out_Valid                        : out std_logic;
20    Out_Data                        : out T_SLV_8;
21    Out_SOF                          : out std_logic;
22    Out_EOF                          : out std_logic;
23    Out_Ack                          : in  std_logic;
24    Out_Meta_rst                    : in  std_logic;
25    Out_Meta_SrcMACAddress_nxt      : in  std_logic;
26    Out_Meta_SrcMACAddress_Data      : out T_SLV_8;
27    Out_Meta_DestMACAddress_nxt      : in  std_logic;
28    Out_Meta_DestMACAddress_Data    : out T_SLV_8;
29    Out_Meta_EthType                : out T_SLV_16;
30    Out_Meta_SrcIPv4Address_nxt      : in  std_logic;
31    Out_Meta_SrcIPv4Address_Data    : out T_SLV_8;
32    Out_Meta_DestIPv4Address_nxt    : in  std_logic;
33    Out_Meta_DestIPv4Address_Data    : out T_SLV_8;
34    Out_Meta_Length                  : out T_SLV_16;
35    Out_Meta_Protocol                : out T_SLV_8
36  );
37end entity;
38
39
40architecture rtl of ipv4_RX is
41  attribute FSM_ENCODING            : string;