~ruther/vhdl-fir-filters

vhdl-fir-filters/run.py -rwxr-xr-x 391 bytes
b2a16253 — Rutherther tests: add dac model 1 year, 1 month 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