From 9fd98ddc565be8577f8d7fc0196f98b11b7a5a8b Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 17 Apr 2021 09:03:44 +0100 Subject: [PATCH] whitespace (pep8) --- c4m/nmigen/jtag/tap.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/c4m/nmigen/jtag/tap.py b/c4m/nmigen/jtag/tap.py index 473c067..5acac07 100755 --- a/c4m/nmigen/jtag/tap.py +++ b/c4m/nmigen/jtag/tap.py @@ -120,6 +120,7 @@ class _FSM(Elaboratable): return m + class _IRBlock(Elaboratable): """TAP subblock for handling the IR shift register""" def __init__(self, *, ir_width, cmd_idcode, @@ -152,12 +153,14 @@ class _IRBlock(Elaboratable): return m + class IOType(Enum): In = auto() Out = auto() TriOut = auto() InTriOut = auto() + class IOConn(Record): """TAP subblock representing the interface for an JTAG IO cell. It contains signal to connect to the core and to the pad @@ -199,6 +202,7 @@ class IOConn(Record): self._iotype = iotype + class _IDBypassBlock(Elaboratable): """TAP subblock for the ID shift register""" def __init__(self, *, manufacturer_id, part_number, version, -- 2.30.2