PoC.net.udp.TX
Todo
No documentation available.
Entity Declaration:
1 generic (
2 DEBUG : boolean := FALSE;
3 IP_VERSION : positive := 6
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_SrcIPAddress_nxt : out std_logic;
16 In_Meta_SrcIPAddress_Data : in T_SLV_8;
17 In_Meta_DestIPAddress_nxt : out std_logic;
18 In_Meta_DestIPAddress_Data : in T_SLV_8;
19 In_Meta_SrcPort : in T_SLV_16;
20 In_Meta_DestPort : in T_SLV_16;
21 In_Meta_Length : in T_SLV_16;
22 In_Meta_Checksum : in T_SLV_16;
23 -- OUT port
24 Out_Valid : out std_logic;
25 Out_Data : out T_SLV_8;
26 Out_SOF : out std_logic;
27 Out_EOF : out std_logic;
28 Out_Ack : in std_logic;
29 Out_Meta_rst : in std_logic;
30 Out_Meta_SrcIPAddress_nxt : in std_logic;
31 Out_Meta_SrcIPAddress_Data : out T_SLV_8;
32 Out_Meta_DestIPAddress_nxt : in std_logic;
33 Out_Meta_DestIPAddress_Data : out T_SLV_8;
34 Out_Meta_Length : out T_SLV_16
35 );
36end entity;