PoC.net.ipv4.FrameLoopback
Todo
No documentation available.
Entity Declaration:
1 port (
2 Clock : in std_logic;
3 Reset : in std_logic;
4 -- IN port
5 In_Valid : in std_logic;
6 In_Data : in T_SLV_8;
7 In_SOF : in std_logic;
8 In_EOF : in std_logic;
9 In_Ack : out std_logic;
10 In_Meta_rst : out std_logic;
11 In_Meta_SrcIPv4Address_nxt : out std_logic;
12 In_Meta_SrcIPv4Address_Data : in T_SLV_8;
13 In_Meta_DestIPv4Address_nxt : out std_logic;
14 In_Meta_DestIPv4Address_Data : in T_SLV_8;
15 In_Meta_Length : in T_SLV_16;
16 -- OUT port
17 Out_Valid : out std_logic;
18 Out_Data : out T_SLV_8;
19 Out_SOF : out std_logic;
20 Out_EOF : out std_logic;
21 Out_Ack : in std_logic;
22 Out_Meta_rst : in std_logic;
23 Out_Meta_SrcIPv4Address_nxt : in std_logic;
24 Out_Meta_SrcIPv4Address_Data : out T_SLV_8;
25 Out_Meta_DestIPv4Address_nxt : in std_logic;
26 Out_Meta_DestIPv4Address_Data : out T_SLV_8;
27 Out_Meta_Length : out T_SLV_16
28 );
29end entity;
30
31
32architecture rtl of ipv4_FrameLoopback is
33 constant META_STREAMID_SRCADDR : natural := 0;