From 8d6c07be9b05da62fba0c5c5ce15970ffa7105c5 Mon Sep 17 00:00:00 2001 From: Andreas Olofsson Date: Wed, 13 Jan 2016 15:32:15 -0500 Subject: [PATCH] Changing timeout - Test being cut off too early. - Really need to implement end of test indication already!!! --- common/dv/dv_ctrl.v | 2 +- common/dv/dv_top.v | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/common/dv/dv_ctrl.v b/common/dv/dv_ctrl.v index 1c94b05..ec255fd 100644 --- a/common/dv/dv_ctrl.v +++ b/common/dv/dv_ctrl.v @@ -8,7 +8,7 @@ module dv_ctrl(/*AUTOARG*/ parameter CLK_PERIOD = 10; parameter CLK_PHASE = CLK_PERIOD/2; - parameter TIMEOUT = 1000; + parameter TIMEOUT = 5000; output nreset; // async active low reset output clk; // main clock diff --git a/common/dv/dv_top.v b/common/dv/dv_top.v index 27497f0..fda4b5a 100644 --- a/common/dv/dv_top.v +++ b/common/dv/dv_top.v @@ -42,7 +42,7 @@ module dv_top(); // -dumps stimulus //############################################################ - dv_ctrl dv_ctrl (.test_done (1'b1), //optimize later + dv_ctrl dv_ctrl (.test_done (1'b1), //optimize later /*AUTOINST*/ // Outputs .nreset (nreset), @@ -57,7 +57,6 @@ module dv_top(); // -create your own module named dut to include at compile time //############################################################# - /*dut AUTO_TEMPLATE( .\(.*\)_out (dut_\1[]), .\(.*\)_in (stim_\1[]),