From b3848fac03e6c4ef928d71a705ca1d93dc52ddd2 Mon Sep 17 00:00:00 2001 From: bluew Date: Mon, 22 Jul 2019 18:36:49 +0000 Subject: [PATCH] Fix scope of timeunit declaration By putting the timeunit declaration outside of the module declaration it affects the whole compilation unit. This breaks PULPissimo when trying to use a different simulator. --- tb/tb_hwpe_ctrl_seq_mult.sv | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tb/tb_hwpe_ctrl_seq_mult.sv b/tb/tb_hwpe_ctrl_seq_mult.sv index 2439d66..5c99c76 100644 --- a/tb/tb_hwpe_ctrl_seq_mult.sv +++ b/tb/tb_hwpe_ctrl_seq_mult.sv @@ -13,11 +13,12 @@ * specific language governing permissions and limitations under the License. */ -timeunit 1ns; -timeprecision 1ps; module tb_hwpe_ctrl_seq_mult; + timeunit 1ns; + timeprecision 1ps; + localparam AW = 8; localparam BW = 8;