Skip to content

Commit e468ccc

Browse files
committed
phy/titanium_lvds_1000basex: Also switch to synchronous Decoder.
1 parent edaff7e commit e468ccc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

liteeth/phy/titanium_lvds_1000basex.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from litex.build.io import *
99

10-
from litex.soc.cores.code_8b10b import K, D, DecoderComb
10+
from litex.soc.cores.code_8b10b import K, D, Decoder
1111

1212
from litex.soc.cores.clock.efinix import TITANIUMPLL
1313

@@ -213,8 +213,8 @@ def __init__(self, data_in):
213213

214214
self.is_i2 = is_i2 = Signal()
215215

216-
self.decoder1= decoder1 = DecoderComb(lsb_first=True)
217-
self.decoder2= decoder2 = DecoderComb(lsb_first=True)
216+
self.decoder1= decoder1 = Decoder(lsb_first=True)
217+
self.decoder2= decoder2 = Decoder(lsb_first=True)
218218

219219
self.comb += [
220220
decoder1.input.eq(data_in[:10]),

0 commit comments

Comments
 (0)