Hello,
Lets say i have a class with a method:
class TestBlk():
def block_connect(self, reset, clk, stimulus):
test=Signal(bool(1))
My testbench needs to monitor the signal changes of the variable test from outside this class and inject some stimulus.
How can i access the variable test from outside this class to monitor the signal changes ? Is it possible?
Thank you