From 1817ab2e119f9bcdb01a64dc40493ec2013a7284 Mon Sep 17 00:00:00 2001 From: David Harris Date: Sat, 20 Apr 2024 23:13:13 -0700 Subject: [PATCH] testbench import is happy now for Questa, but throws lint warning for VCS --- testbench/testbench.sv | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testbench/testbench.sv b/testbench/testbench.sv index 577897271..4086b2085 100644 --- a/testbench/testbench.sv +++ b/testbench/testbench.sv @@ -33,7 +33,9 @@ `include "idv/idv.svh" `endif -module testbench import cvw::*; (); +import cvw::*; + +module testbench; /* verilator lint_off WIDTHTRUNC */ /* verilator lint_off WIDTHEXPAND */ parameter DEBUG=0;