mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
dvisampler/datacapture: swap bit pairs
This commit is contained in:
parent
53e5c4f59c
commit
63073319b0
1 changed files with 1 additions and 1 deletions
|
@ -156,5 +156,5 @@ class DataCapture(Module, AutoCSR):
|
|||
d1i.eq(d1 ^ invert)
|
||||
]
|
||||
dsr = Signal(10)
|
||||
self.sync.pix5x += dsr.eq(Cat(dsr[2:], d0i, d1i))
|
||||
self.sync.pix5x += dsr.eq(Cat(dsr[2:], d1i, d0i))
|
||||
self.sync.pix += self.d.eq(dsr)
|
||||
|
|
Loading…
Reference in a new issue