From dd0c84a11f93661d1682a95419dcf04aa91cad96 Mon Sep 17 00:00:00 2001 From: Andrey Miroshnikov Date: Tue, 7 Dec 2021 18:46:16 +0000 Subject: [PATCH] Solved one issue, found another. See bug #50 c#72 --- src/spec/testing_stage1.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/spec/testing_stage1.py b/src/spec/testing_stage1.py index 4f6d8c9..03c8c5d 100644 --- a/src/spec/testing_stage1.py +++ b/src/spec/testing_stage1.py @@ -636,8 +636,10 @@ def test_i2c(): print("I2C Test PASSED!") def test_jtag_bs_chain(): + print(dir(top.jtag)) + print(dir(top)) print("JTAG BS Reset") - jtag_set_reset(top.jtag) + yield from jtag_set_reset(top.jtag) print("JTAG I/O dictionary of core/pad signals:") print(top.jtag.ios.keys()) -- 2.30.2