PlTbUtils  1.3
PlTbUtils is a collection of functions, procedures and components for easily creating stimuli and checking response in automatic self-checking testbenches.
comp.do
Go to the documentation of this file.
1 # comp.do
2 # ModelSim do-script for compiling design and testbench
3 if {![file exists $libname]} {
4  vlib $libname
5 }
6 vcom -novopt -work $libname \
7  ../../../examples/vhdl/rtl_example/dut_example.vhd \
8  ../../../src/vhdl/txt_util.vhd \
9  ../../../src/vhdl/pltbutils_user_cfg_pkg.vhd \
10  ../../../src/vhdl/pltbutils_func_pkg.vhd \
11  ../../../src/vhdl/pltbutils_comp.vhd \
12  ../../../src/vhdl/pltbutils_comp_pkg.vhd \
13  ../../../examples/vhdl/tb_example2/tc_example2.vhd \
14  $1 \
15  ../../../examples/vhdl/tb_example2/tb_example2.vhd
16