diff options
Diffstat (limited to 'decoders/z80')
-rw-r--r-- | decoders/z80/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/z80/pd.py b/decoders/z80/pd.py index bd2ec57..76e1858 100644 --- a/decoders/z80/pd.py +++ b/decoders/z80/pd.py @@ -132,7 +132,7 @@ class Decoder(srd.Decoder): def decode(self): while True: # TODO: Come up with more appropriate self.wait() conditions. - pins = self.wait({'skip': 1}) + pins = self.wait() cycle = Cycle.NONE if pins[Pin.MREQ] != 1: # default to asserted if pins[Pin.RD] == 0: |