WIP: B-ASIC version 1.0.0 hotfix
Hotfix for imports that were accidentally included.
Merge request reports
Activity
18 @pytest.fixture 19 def out_port2(): 20 return OutputPort(1, None) 21 22 @pytest.fixture 23 def dangling_sig(): 24 return Signal() 25 26 @pytest.fixture 27 def s_w_source(): 28 out_port = OutputPort(0, None) 29 return Signal(source=out_port) 30 31 @pytest.fixture 32 def sig_with_dest(): 33 inp_port = InputPort(0, None) 19 def out_port2(): 20 return OutputPort(1, None) 21 22 @pytest.fixture 23 def dangling_sig(): 24 return Signal() 25 26 @pytest.fixture 27 def s_w_source(): 28 out_port = OutputPort(0, None) 29 return Signal(source=out_port) 30 31 @pytest.fixture 32 def sig_with_dest(): 33 inp_port = InputPort(0, None) 34 return Signal(destination=out_port)
Please register or sign in to reply