~ruther/vhdl-i2c

f69689aa2b3270d54c1ee6f63dbe7370a9f6c500 — Rutherther 1 year, 3 months ago 5a7785c
chore: split mcu_slave tb to separate library
1 files changed, 8 insertions(+), 2 deletions(-)

M run.py
M run.py => run.py +8 -2
@@ 7,8 7,14 @@ vu = VUnit.from_argv(compile_builtins = False)

vu.add_vhdl_builtins()

testbench_lib = vu.add_library('i2c_tb')
testbench_lib.add_source_files(Path(__file__).parent / 'tb/**/*.vhd')
i2c_tb_lib = vu.add_library('i2c_tb')
i2c_tb_lib.add_source_files(Path(__file__).parent / 'tb/i2c/**/*.vhd')

mcu_slave_tb_lib = vu.add_library('mcu_slave_tb')
mcu_slave_tb_lib.add_source_files(Path(__file__).parent / 'tb/mcu_slave/**/*.vhd')

utils_lib = vu.add_library('mcu_slave')
utils_lib.add_source_files(Path(__file__).parent / 'src/mcu_slave/**/*.vhd')

utils_lib = vu.add_library('utils')
utils_lib.add_source_files(Path(__file__).parent / 'src/utils/**/*.vhd')

Do not follow this link