PoC.net.udp.FrameLoopback
Todo
No documentation available.
Entity Declaration:
1 generic (
2 IP_VERSION : positive := 6;
3 MAX_FRAMES : positive := 4
4 );
5 port (
6 Clock : in std_logic;
7 Reset : in std_logic;
8 -- IN port
9 In_Valid : in std_logic;
10 In_Data : in T_SLV_8;
11 In_SOF : in std_logic;
12 In_EOF : in std_logic;
13 In_Ack : out std_logic;
14 In_Meta_rst : out std_logic;
15 In_Meta_DestIPAddress_nxt : out std_logic;
16 In_Meta_DestIPAddress_Data : in T_SLV_8;
17 In_Meta_SrcIPAddress_nxt : out std_logic;
18 In_Meta_SrcIPAddress_Data : in T_SLV_8;
19 In_Meta_DestPort : in T_NET_UDP_PORT;
20 In_Meta_SrcPort : in T_NET_UDP_PORT;
21 -- OUT port
22 Out_Valid : out std_logic;
23 Out_Data : out T_SLV_8;
24 Out_SOF : out std_logic;
25 Out_EOF : out std_logic;
26 Out_Ack : in std_logic;
27 Out_Meta_rst : in std_logic;
28 Out_Meta_DestIPAddress_nxt : in std_logic;
29 Out_Meta_DestIPAddress_Data : out T_SLV_8;
30 Out_Meta_SrcIPAddress_nxt : in std_logic;
31 Out_Meta_SrcIPAddress_Data : out T_SLV_8;
32 Out_Meta_DestPort : out T_NET_UDP_PORT;
33 Out_Meta_SrcPort : out T_NET_UDP_PORT
34 );
35end entity;