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:
Icenowy Zheng 2023-08-11 14:56:56 +08:00
parent 577674bff2
commit c1d8db396d
1 changed files with 1 additions and 1 deletions

View File

@ -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 ---------------------------------------------------------------------------------