build/gowin/common: adding missing TX/Q1 ODDR signals

This commit is contained in:
Gwenhael Goavec-Merou 2024-01-08 07:28:56 +01:00
parent 718c26d8fc
commit 91fbc79ac2
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,8 @@
from migen.fhdl.module import Module
from migen.genlib.resetsync import AsyncResetSynchronizer
from litex.gen import *
from litex.build.io import *
# Gowin AsyncResetSynchronizer ---------------------------------------------------------------------
@ -58,7 +60,9 @@ class GowinDDROutputImpl(Module):
i_CLK = clk,
i_D0 = i1,
i_D1 = i2,
i_TX = 0,
o_Q0 = o,
o_Q1 = Open(),
)
class GowinDDROutput: