gen/fhdl/module: Fix typo.
This commit is contained in:
parent
22b61c39ca
commit
653b74fe98
|
@ -40,7 +40,7 @@ class LiteXModule(Module, AutoCSR, AutoDoc):
|
||||||
print(other)
|
print(other)
|
||||||
m.submodules += other
|
m.submodules += other
|
||||||
# - m += special_x equivalent of Migen's m.specials += special_x.
|
# - m += special_x equivalent of Migen's m.specials += special_x.
|
||||||
elif isinstnace(other, Special):
|
elif isinstance(other, Special):
|
||||||
m.specials += other
|
m.specials += other
|
||||||
# - m += cd_x equivalent of Migen's m.clock_domains += cd_x.
|
# - m += cd_x equivalent of Migen's m.clock_domains += cd_x.
|
||||||
elif isinstance(other, ClockDomain):
|
elif isinstance(other, ClockDomain):
|
||||||
|
|
Loading…
Reference in New Issue