PoC.bus.stream.Source
Todo
No documentation available.
Entity Declaration:
1entity stream_Source is
2 generic (
3 TESTCASES : T_SIM_STREAM_FRAMEGROUP_VECTOR_8
4 );
5 port (
6 Clock : in std_logic;
7 Reset : in std_logic;
8 -- Control interface
9 Enable : in std_logic;
10 -- OUT Port
11 Out_Valid : out std_logic;
12 Out_Data : out T_SLV_8;
13 Out_SOF : out std_logic;
14 Out_EOF : out std_logic;
15 Out_Ack : in std_logic
16 );
17end entity;