@@ -14,43 +14,43 @@ use work.type_pack.all;
14
14
15
15
entity STREAMING_DEBUG_MASTER is
16
16
generic (
17
- -- ! \brief Number of connected probes.
17
+ -- Number of connected probes.
18
18
CONNECTED_PROBES : integer := 4 ;
19
19
-- Number of MFB regions.
20
20
REGIONS : natural := 1 ;
21
- -- ! \brief Master debuging enable switch.
22
- -- ! \description True means full architecture implementation, false means empty architecture implementation.
21
+ -- Master debuging enable switch.
22
+ -- True means full architecture implementation, false means empty architecture implementation.
23
23
DEBUG_ENABLED : boolean := false ;
24
- -- ! \brief Selective enabling of monitoring of connected probes when master enable is true.
25
- -- ! \details Character 'E' or 'e' means enabled, each other character means disabled.
26
- -- ! String is red from left to right, one character for each interface numbered from 0.
24
+ -- Selective enabling of monitoring of connected probes when master enable is true.
25
+ -- Character 'E' or 'e' means enabled, each other character means disabled.
26
+ -- String is red from left to right, one character for each interface numbered from 0.
27
27
PROBE_ENABLED : string := " EEEE" ;
28
- -- ! \brief Should counter of data words be available?
28
+ -- Should counter of data words be available?
29
29
COUNTER_WORD : string := " EEEE" ;
30
- -- ! \brief Should counter of waiting cycles (not source nor destination ready) be available?
30
+ -- Should counter of waiting cycles (not source nor destination ready) be available?
31
31
COUNTER_WAIT : string := " EEEE" ;
32
- -- ! \brief Should counter of cycles when source is ready and destination is not be available?
32
+ -- Should counter of cycles when source is ready and destination is not be available?
33
33
COUNTER_DST_HOLD : string := " EEEE" ;
34
- -- ! \brief Should counter of cycles when destination is ready and source is not be available?
34
+ -- Should counter of cycles when destination is ready and source is not be available?
35
35
COUNTER_SRC_HOLD : string := " EEEE" ;
36
- -- ! \brief Should counter of started transactions be available?
36
+ -- Should counter of started transactions be available?
37
37
COUNTER_SOP : string := " EEEE" ;
38
- -- ! \brief Should counter of ended transactions be available?
38
+ -- Should counter of ended transactions be available?
39
39
COUNTER_EOP : string := " EEEE" ;
40
- -- ! \brief Should bus controll functionality be available?
40
+ -- Should bus controll functionality be available?
41
41
BUS_CONTROL : string := " EEEE" ;
42
- -- ! \brief Text identificators for connected probes.
43
- -- ! \details Each probe name has precisely 4 characters.
42
+ -- Text identificators for connected probes.
43
+ -- Each probe name has precisely 4 characters.
44
44
PROBE_NAMES : string := " Int1Int2Int3Int4" ;
45
- -- ! \brief Use internal register on all DEBUG interface signals.
45
+ -- Use internal register on all DEBUG interface signals.
46
46
DEBUG_REG : boolean := false
47
47
);
48
48
port (
49
- -- ! \name CLOCK and RESET
49
+ -- CLOCK and RESET
50
50
CLK : in std_logic ;
51
51
RESET : in std_logic ;
52
52
53
- -- ! \name Input controll MI32 interface
53
+ -- Input controll MI32 interface
54
54
MI_DWR : in std_logic_vector (31 downto 0 );
55
55
MI_ADDR : in std_logic_vector (31 downto 0 );
56
56
MI_RD : in std_logic ;
@@ -60,7 +60,7 @@ entity STREAMING_DEBUG_MASTER is
60
60
MI_ARDY : out std_logic := '0' ;
61
61
MI_DRDY : out std_logic := '0' ;
62
62
63
- -- ! \name Multi-interface for connected streaming interfaces
63
+ -- Multi-interface for connected streaming interfaces
64
64
DEBUG_BLOCK : out std_logic_vector (CONNECTED_PROBES- 1 downto 0 ) := (others => '0' );
65
65
DEBUG_DROP : out std_logic_vector (CONNECTED_PROBES- 1 downto 0 ) := (others => '0' );
66
66
DEBUG_SRC_RDY : in std_logic_vector (CONNECTED_PROBES- 1 downto 0 ) := (others => '0' );
0 commit comments