Skip to content
Snippets Groups Projects
Commit 1f82faa6 authored by Sebastien Bourdeauducq's avatar Sebastien Bourdeauducq
Browse files

ku: fix IDDRE1 clocking

Prevents warnings (and more?) about CB being driven without a clock buffer.
parent 96f2fa6e
No related branches found
No related tags found
No related merge requests found
......@@ -206,9 +206,10 @@ class XilinxDDRInputImplKU(Module):
self.specials += Instance("IDDRE1",
p_DDR_CLK_EDGE="SAME_EDGE_PIPELINED",
p_IS_C_INVERTED=0,
p_IS_CB_INVERTED=1,
i_D=i,
o_Q1=o1, o_Q2=o2,
i_C=clk, i_CB=~clk,
i_C=clk, i_CB=clk,
i_R=0
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment