Merge pull request #1742 from Icenowy/gwddrfix

build/gowin/common: Fix DDRInput
This commit is contained in:
Gwenhael Goavec-Merou 2023-08-16 08:01:29 +02:00 committed by GitHub
commit 4d7a7f5ba1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 ---------------------------------------------------------------------------------