parent
4310254103
commit
39ca0e6fa6
2 changed files with 14 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
from collections.abc import Iterable
|
||||
|
||||
from ...tools import flatten, deprecated
|
||||
from ...hdl import dsl
|
||||
from ...hdl import dsl, ir
|
||||
|
||||
|
||||
__all__ = ["Module", "FinalizeError"]
|
||||
|
|
@ -94,7 +94,7 @@ class _CompatModuleClockDomains(_CompatModuleProxy):
|
|||
return self
|
||||
|
||||
|
||||
class CompatModule:
|
||||
class CompatModule(ir.Elaboratable):
|
||||
# Actually returns nmigen.fhdl.Module, not a Fragment.
|
||||
def get_fragment(self):
|
||||
assert not self.get_fragment_called
|
||||
|
|
@ -102,6 +102,9 @@ class CompatModule:
|
|||
self.finalize()
|
||||
return self._module
|
||||
|
||||
def elaborate(self, platform):
|
||||
return self.get_fragment()
|
||||
|
||||
def __getattr__(self, name):
|
||||
if name == "comb":
|
||||
return _CompatModuleComb(self)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue