From 4eb20c047f0c2c30432f83ed8404636edfe7730b Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 15 Mar 2019 13:58:31 +0000 Subject: [PATCH] move ack to inside loop, seems to reduce time spent in InputGroup parallel test --- src/add/test_inputgroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add/test_inputgroup.py b/src/add/test_inputgroup.py index bb68861c..4c210c26 100644 --- a/src/add/test_inputgroup.py +++ b/src/add/test_inputgroup.py @@ -138,10 +138,10 @@ class InputTest: stb = yield dut.out_op.stb yield dut.out_op.ack.eq(0) while not stb: + yield dut.out_op.ack.eq(1) yield stb = yield dut.out_op.stb - yield dut.out_op.ack.eq(1) stb = yield dut.out_op.stb while stb: yield -- 2.30.2