Skip to content

Commit

Permalink
changes to run verifications
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Jan 13, 2025
1 parent 54a736d commit 404c5b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions hdl/rtl/EF_SPI.v
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ module EF_SPI #(parameter

assign csb = ~ss;

aucohl_ped done_ed (
ef_util_ped done_ed (
.clk(clk),
.in(done),
.out(done_pe)
);

aucohl_fifo #(
ef_util_fifo #(
.DW(FDW),
.AW(FAW)
) rx_fifo (
Expand All @@ -107,7 +107,7 @@ module EF_SPI #(parameter
.level(rx_level)
);

aucohl_fifo #(
ef_util_fifo #(
.DW(FDW),
.AW(FAW)
) tx_fifo (
Expand Down
2 changes: 1 addition & 1 deletion verify/uvm-python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MODULE ?= top_module
AHB_FILES ?= $(PWD)/../../hdl/rtl/bus_wrappers/EF_SPI_AHBL.v
APB_FILES ?= $(PWD)/../../hdl/rtl/bus_wrappers/EF_SPI_APB.v
WB_FILES ?=$(PWD)/../../hdl/rtl/bus_wrappers/EF_SPI_WB.v
HDL_FILES ?= $(PWD)/../../ip/EF_IP_UTIL/rtl/aucohl_lib.v $(PWD)/../../ip/EF_IP_UTIL/rtl/aucohl_rtl.vh $(PWD)/../../hdl/rtl/spi_master.v $(PWD)/../../hdl/rtl/EF_SPI.v
HDL_FILES ?= $(PWD)/../../ip/EF_IP_UTIL/hdl/ef_util_lib.v $(PWD)/../../hdl/rtl/spi_master.v $(PWD)/../../hdl/rtl/EF_SPI.v

VERILOG_SOURCES ?= $(PWD)/top.v $(AHB_FILES) $(APB_FILES) $(WB_FILES) $(HDL_FILES)
RTL_MACROS += ""
Expand Down
2 changes: 1 addition & 1 deletion verify/uvm-python/test_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async def module_top(dut):
UVMRoot().clp.get_arg_values("+TEST_PATH=", test_path)
test_path = test_path[0]
await run_test()
coverage_db.export_to_yaml(filename=f"{test_path}/coverage.yalm")
coverage_db.export_to_yaml(filename=f"{test_path}/coverage.yaml")
# profiler.disable()
# profiler.dump_stats("profile_result.prof")

Expand Down

0 comments on commit 404c5b5

Please sign in to comment.