Commit 51f2e6ce authored by Florent Kermarrec's avatar Florent Kermarrec

build/io/InferedSDRTristate: pass clock domain to SDROutput/SDRInput.

parent 23dfefb9
......@@ -81,8 +81,8 @@ class InferedSDRTristate(Module):
_o = Signal()
_oe = Signal()
_i = Signal()
self.specials += SDROutput(o, _o)
self.specials += SDRInput(_i, i)
self.specials += SDROutput(o, _o, clk)
self.specials += SDRInput(_i, i, clk)
self.submodules += InferedSDRIO(oe, _oe, clk, clk_domain)
self.specials += Tristate(io, _o, _oe, _i)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment