Skip to content

Commit

Permalink
[ot] python/qemu/jtag: bitbang.py: reset default TDI value to 0
Browse files Browse the repository at this point in the history
Signed-off-by: Emmanuel Blot <eblot@rivosinc.com>
  • Loading branch information
rivos-eblot committed Oct 23, 2024
1 parent bb6ab69 commit 9fd4845
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/qemu/jtag/bitbang.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ def write_tms(self, modesel: BitSequence) -> None:
if self._last is not None:
self._tdi = self._last
self._last = None
else:
self._tdi = False
if self._link_log:
self._log.debug('write TMS [%d] %s', len(modesel), modesel)
tck = self._tck
Expand Down

0 comments on commit 9fd4845

Please sign in to comment.