Examples¶
Hint
Most of the examples expect the simulator to support several VHDL 2008 features.
This is made explicit by using context instead of multiple use statements.
However, some vendors do support enough VHDL 2008 features in order to run some of the examples, but they cannot
handle contexts.
In those cases, replacing context vunit_lib.vunit_context with the content of vunit/vhdl/vunit_context.vhd
and vunit/vhdl/data_types/src/data_types_context.vhd might work.
VHDL¶
VHDL UART¶
A more realistic test bench of an UART to show VUnit VHDL usage on a typical module.
Check¶
Demonstrates the VUnit check library.
Run¶
Demonstrates the VUnit run library.
Composite generics¶
➚ examples/vhdl/composite_generics
See Enable Your Simulator to Handle Complex Top-Level Generics.
Array and AXI4 Stream Verification Components¶
➚ examples/vhdl/array_axis_vcs
Shows how to use integer_array_t, axi_stream_master_t and axi_stream_slave_t.
A CSV file is read, the content is sent in a row-major order to an AXI Stream buffer
(FIFO) and it is received back to be saved in a different file. Further information can
be found in the verification component library user guide,
in subsection Stream and in
vhdl/verification_components/test/tb_axi_stream.vhd.
Communication library¶
Demonstrates the com message passing package which can be used
to communicate arbitrary objects between processes. Further reading
can be found in the com user guide.
Logging¶
Demonstrates VUnit’s support for logging.
VHDL User Guide¶
The most minimal VUnit VHDL project covering the basics of the User Guide.
Array¶
Demonstrates the integer_array_t data type, which can be used to
handle dynamically sized 1D, 2D and 3D data as well as storing and
loading it from csv and raw files.
AXI DMA¶
Demonstrates the AXI read and write slave verification components as well as the AXI-lite master verification component. An AXI DMA is verified which uses an AXI master port to read and write data from external memory. The AXI DMA also has a control register interface via AXI-lite.
Generating tests¶
➚ examples/vhdl/generate_tests
Demonstrates generating multiple test runs of the same test bench
with different generic values. Also demonstrates use of output_path generic
to create test bench output files in location specified by VUnit python runner.
SystemVerilog¶
SystemVerilog UART¶
A more realistic test bench of an UART to show VUnit SystemVerilog usage on a typical module.
SystemVerilog User Guide¶
The most minimal VUnit SystemVerilog project covering the basics of the User Guide.