From 40397fab8cf472e9fc0ddf27b89116cbc262dbac Mon Sep 17 00:00:00 2001 From: Rutherther Date: Wed, 21 Feb 2024 19:47:39 +0100 Subject: [PATCH] chore: update vunit run.py --- run.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/run.py b/run.py index be6a76f486eaca9ee03767585e7479f8c056b103..9f569f55e4ae4696838ab8e81ba619cfeb9b82f4 100644 --- a/run.py +++ b/run.py @@ -6,6 +6,7 @@ from pathlib import Path vu = VUnit.from_argv(compile_builtins = False) vu.add_vhdl_builtins() +vu.add_com() i2c_tb_lib = vu.add_library('i2c_tb') i2c_tb_lib.add_source_files(Path(__file__).parent / 'tb/i2c/**/*.vhd') @@ -25,8 +26,8 @@ ssd1306_lib.add_source_files(Path(__file__).parent / 'tb/ssd1306/**/*.vhd') utils_lib = vu.add_library('utils') utils_lib.add_source_files(Path(__file__).parent / 'src/utils/**/*.vhd') -utils_tb_lib = vu.add_library('utils_tb') -utils_tb_lib.add_source_files(Path(__file__).parent / 'tb/utils/**/*.vhd') +# utils_tb_lib = vu.add_library('utils_tb') +# utils_tb_lib.add_source_files(Path(__file__).parent / 'tb/utils/**/*.vhd') i2c_lib = vu.add_library('i2c') i2c_lib.add_source_files(Path(__file__).parent / 'src/**/*.vhd')