projects
/
c4m-jtag.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9173e88
)
svfcocotb: Fix results access for SDR and SIR.
author
Staf Verhaegen
<staf@stafverhaegen.be>
Thu, 1 Apr 2021 11:48:17 +0000
(13:48 +0200)
committer
Staf Verhaegen
<staf@stafverhaegen.be>
Wed, 21 Apr 2021 17:42:15 +0000
(19:42 +0200)
c4m/cocotb/jtag/c4m_jtag_svfcocotb.py
patch
|
blob
|
history
diff --git
a/c4m/cocotb/jtag/c4m_jtag_svfcocotb.py
b/c4m/cocotb/jtag/c4m_jtag_svfcocotb.py
index 1560359383385847083396621feca0d477e9d8b3..ff5107740a1364f0395a2e97654ec56e9aba2bbf 100755
(executable)
--- a/
c4m/cocotb/jtag/c4m_jtag_svfcocotb.py
+++ b/
c4m/cocotb/jtag/c4m_jtag_svfcocotb.py
@@
-108,7
+108,7
@@
class SVF_Executor(object):
if tdo is not None:
if self._d_mask is not None:
raise(JTAGException("MASK not supported for SDR"))
- assert(self.result == tdo)
+ assert(self.
master.
result == tdo)
@cocotb.coroutine
def _execute_SIR(self, node):
@@
-139,7
+139,7
@@
class SVF_Executor(object):
if tdo is not None:
if self._i_mask is not None:
raise(JTAGException("MASK not supported for SIR"))
- assert(self.result == tdo)
+ assert(self.
master.
result == tdo)
@cocotb.coroutine