~ruther/vhdl-vunit-template

ref: 6bdd527bbcc83d4f1e36a52260355b0810f5fe3d vhdl-vunit-template/run.py -rwxr-xr-x 393 bytes
6bdd527b — Rutherther Initial commit 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python3

from vunit import VUnit
from pathlib import Path

vu = VUnit.from_argv(compile_builtins = False)

vu.add_vhdl_builtins()

testbench_lib = vu.add_library('PROJECT_tb')
testbench_lib.add_source_files(Path(__file__).parent / 'testbench/**/*.vhd')

stopwatch_lib = vu.add_library('PROJECT')
stopwatch_lib.add_source_files(Path(__file__).parent / 'src/**/*.vhd')

vu.main()
Do not follow this link