Skip to content

Commit

Permalink
Added minimal documentation for AXI stream monitor and protocol checker.
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsAsplund committed Aug 2, 2018
1 parent 1fb8cf0 commit cc53a5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/verification_components/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Included verification components (VCs):
- AXI read slave
- AXI write slave
- AXI stream master
- AXI stream monitor
- AXI stream protocol checker
- AXI stream slave
- RAM master
- Wishbone master
Expand Down
6 changes: 6 additions & 0 deletions vunit/vhdl/verification_components/src/axi_stream_pkg.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ package axi_stream_pkg is
p_max_waits => 0
);

-- The default protocol checker is used to specify that the checker
-- configuration is defined by the parent component into which the checker is
-- instantiated.
constant default_axi_stream_protocol_checker : axi_stream_protocol_checker_t := (
p_type => default_component,
p_actor => null_actor,
Expand All @@ -60,6 +63,9 @@ package axi_stream_pkg is
p_protocol_checker => null_axi_stream_protocol_checker
);

-- The default monitor is used to specify that the monitor
-- configuration is defined by the parent component into which the monitor is
-- instantiated.
constant default_axi_stream_monitor : axi_stream_monitor_t := (
p_type => default_component,
p_actor => null_actor,
Expand Down

0 comments on commit cc53a5d

Please sign in to comment.