Merge pull request #1028 from wuhanstudio/fix-syntax-error
fix: missing colon syntax error
This commit is contained in:
commit
bdd4717daa
|
@ -14,7 +14,7 @@ class SimDDROutputImpl(Module):
|
||||||
i_clk = clk
|
i_clk = clk
|
||||||
)
|
)
|
||||||
|
|
||||||
class SimDDROutput
|
class SimDDROutput:
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def lower(dr):
|
def lower(dr):
|
||||||
return SimDDROutputImpl(dr.o, dr.i1, dr.i2, dr.clk)
|
return SimDDROutputImpl(dr.o, dr.i1, dr.i2, dr.clk)
|
||||||
|
|
Loading…
Reference in New Issue