~ruther/vhdl-fir-filters

ref: 8eec5b61dd2ed188f948ffacd379a7ccf97c824f vhdl-fir-filters/run.py -rwxr-xr-x 391 bytes
8eec5b61 — Rutherther tests: add signal generator, signal adder, adc and xtal models 1 year, 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3

from vunit import VUnit
from pathlib import Path

vu = VUnit.from_argv(compile_builtins = False)

vu.add_vhdl_builtins()
vu.add_com()

filter_tb_lib = vu.add_library('filter_tb')
filter_tb_lib.add_source_files(Path(__file__).parent / 'tb/**/*.vhd')

filter_lib = vu.add_library('filter')
filter_lib.add_source_files(Path(__file__).parent / 'src/**/*.vhd')

vu.main()
Do not follow this link