Reorganization of files

This commit is contained in:
2025-08-23 15:08:23 -07:00
parent 800e9c4008
commit 3e82cd5455
12 changed files with 40 additions and 30 deletions

View File

@@ -18,8 +18,8 @@ CPP_BUILD_LOG=logs/$(PROJ)_build_cpp.log
SIM_LOG=$(PROJ)_sim.log
SV_FILES=$(shell ls common/* src/*.sv tb/*.sv)
SV_SRC=$(UVM_HOME)/src/uvm_pkg.sv common/common_pkg.sv src/design_pkg.sv tb/tb_types.sv tb/tb_pkg.sv
SV_FILES=$(shell ls common/*.sv src/axi/*.sv tb/*.sv)
SV_SRC=$(UVM_HOME)/src/uvm_pkg.sv common/common_pkg.sv src/axi/axi_types.sv src/axi/axi_pkg.sv tb/tb_pkg.sv
DPI_SRC=$(UVM_HOME)/src/dpi/uvm_dpi.cc
DPI_INC=-I/usr/share/verilator/include
SV_DEPS=$(SV_FILES)
@@ -44,7 +44,7 @@ BUILD_ARGS=-I$(UVM_HOME)/src -I. \
+define+SVA_ON \
$(UVM_DEFINES) \
$(DISABLED_WARNINGS) \
+incdir+common +incdir+src +incdir+tb \
+incdir+common +incdir+src/axi +incdir+tb \
$(SV_SRC)
ifndef TEST_NAME