From: Cesar Strauss Date: Mon, 25 May 2020 15:07:15 +0000 (-0300) Subject: Fix detection of busy_o inside the monitor process X-Git-Tag: div_pipeline~836 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5eebed2a952f786d445863266f3a1a7aa70846a;p=soc.git Fix detection of busy_o inside the monitor process Found the bug literally seconds after pushing... --- 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