From c5eebed2a952f786d445863266f3a1a7aa70846a Mon Sep 17 00:00:00 2001 From: Cesar Strauss Date: Mon, 25 May 2020 12:07:15 -0300 Subject: [PATCH] Fix detection of busy_o inside the monitor process Found the bug literally seconds after pushing... --- src/soc/experiment/compalu_multi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/experiment/compalu_multi.py b/src/soc/experiment/compalu_multi.py index 5d671eab..ac3981fa 100644 --- a/src/soc/experiment/compalu_multi.py +++ b/src/soc/experiment/compalu_multi.py @@ -404,8 +404,8 @@ class CompUnitParallelTest: print("Driver: busy_o =", busy_o) def monitor(self): - busy_o = yield self.dut.busy_o for i in range(10): + busy_o = yield self.dut.busy_o print(" Monitor: busy_o =", busy_o) yield -- 2.30.2