Skip to content

Commit

Permalink
interpolate: readability tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Sep 10, 2020
1 parent ad26c95 commit 65aef3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dac_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, pins, swap=((0, 3), (1, 8))):
self.comb += [
Cat(words).eq(Cat(self.data)),
par.eq(Cat([parity(*word) for word in self.data])),
self.istr.eq(i[-1]),
self.istr.eq(i[0]),
]
self.sync += [
i.eq(Cat(i[-1], i)),
Expand Down

0 comments on commit 65aef3e

Please sign in to comment.