compat.fhdl.specials: fix __all__ list.

This commit is contained in:
whitequark 2019-01-26 22:59:33 +00:00
parent 6cd9f7db19
commit ce7ba70462

View file

@ -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):