build/gowin/common: Fix DDRInput
The DDRInput of Gowin seems to be never used and contains a typo that prevents it from being really used. Fix this typo. Signed-off-by: Icenowy Zheng <uwu@icenowy.me>
This commit is contained in:
parent
577674bff2
commit
c1d8db396d
|
@ -48,7 +48,7 @@ class GowinDDRInputImpl(Module):
|
|||
class GowinDDRInput:
|
||||
@staticmethod
|
||||
def lower(dr):
|
||||
return GowinInputImpl(dr.i, dr.o1, dr.o2, dr.clk)
|
||||
return GowinDDRInputImpl(dr.i, dr.o1, dr.o2, dr.clk)
|
||||
|
||||
# Gowin DDR Output ---------------------------------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue