compat.fhdl.specials: fix __all__ list.
This commit is contained in:
parent
6cd9f7db19
commit
ce7ba70462
|
@ -3,12 +3,12 @@ import warnings
|
|||
from ...tools import deprecated, extend
|
||||
from ...hdl.ast import *
|
||||
from ...hdl.mem import Memory as NativeMemory
|
||||
from ...hdl.ir import Fragment
|
||||
from ...hdl.ir import Fragment, Instance
|
||||
from ...lib.io import TSTriple as NativeTSTriple, Tristate as NativeTristate
|
||||
from .module import Module as CompatModule
|
||||
|
||||
|
||||
__all__ = ["TSTriple", "READ_FIRST", "WRITE_FIRST", "NO_CHANGE", "_MemoryPort", "Memory"]
|
||||
__all__ = ["TSTriple", "Instance", "Memory", "READ_FIRST", "WRITE_FIRST", "NO_CHANGE"]
|
||||
|
||||
|
||||
class CompatTSTriple(NativeTSTriple):
|
||||
|
|
Loading…
Reference in a new issue