From 724a88f5233739a6b1378d3aac6422891aef4c96 Mon Sep 17 00:00:00 2001 From: Cary R Date: Mon, 1 Jan 2024 11:01:19 -0800 Subject: [PATCH] Update array_slice_concat.v Add delay to avoid race in TB code and DUT code --- ivtest/ivltests/array_slice_concat.v | 1 + 1 file changed, 1 insertion(+) diff --git a/ivtest/ivltests/array_slice_concat.v b/ivtest/ivltests/array_slice_concat.v index 7fca2417d..ced19865b 100644 --- a/ivtest/ivltests/array_slice_concat.v +++ b/ivtest/ivltests/array_slice_concat.v @@ -26,6 +26,7 @@ module top; initial begin a = {32'h44444444, 32'h33333333, 32'h22222222, 32'h11111111}; start = 1; + #1; if (out !== 96'h444444443333333322222222) begin $display("FAILED"); $finish;