Skip to content

Commit 11aa1be

Browse files
committedAug 16, 2017
xilinx: change Spartan-6 DDR output alignment to C0
1 parent d8860cd commit 11aa1be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎migen/build/xilinx/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def lower(dr):
130130
class XilinxDDROutputImplS6(Module):
131131
def __init__(self, i1, i2, o, clk):
132132
self.specials += Instance("ODDR2",
133-
p_DDR_ALIGNMENT="NONE", p_INIT=0, p_SRTYPE="SYNC",
133+
p_DDR_ALIGNMENT="C0", p_INIT=0, p_SRTYPE="SYNC",
134134
i_C0=clk, i_C1=~clk, i_CE=1, i_S=0, i_R=0,
135135
i_D0=i1, i_D1=i2, o_Q=o,
136136
)

0 commit comments

Comments
 (0)
Please sign in to comment.