From 610351d169b9841c9a6bb503106363bfe5580b33 Mon Sep 17 00:00:00 2001 From: Benjamin Davis Date: Thu, 13 Nov 2025 22:26:18 -0700 Subject: [PATCH] Fixed VSIM-7061 error in test_parity when using latest Questa Simulator. (#182) Closes #181 --- tests/test_parity/tb_template.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_parity/tb_template.sv b/tests/test_parity/tb_template.sv index 392a23a..a92b483 100644 --- a/tests/test_parity/tb_template.sv +++ b/tests/test_parity/tb_template.sv @@ -24,8 +24,8 @@ disable fork; cpuif.write('h0, 'd0); - assign dut.field_storage.r1.f1.value = 16'd1; - deassign dut.field_storage.r1.f1.value; + force dut.field_storage.r1.f1.value = 16'd1; + release dut.field_storage.r1.f1.value; @cb; @cb; assert(cb.parity_error == 1'b1);