amaranth/nmigen/__init__.py

15 lines
457 B
Python
Raw Normal View History

2019-05-26 05:20:13 -06:00
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from .hdl.ast import Value, Const, C, Mux, Cat, Repl, Array, Signal, ClockSignal, ResetSignal
2018-12-15 07:23:42 -07:00
from .hdl.dsl import Module
from .hdl.cd import ClockDomain
from .hdl.ir import Elaboratable, Fragment, Instance
2018-12-20 18:53:32 -07:00
from .hdl.mem import Memory
2018-12-28 06:22:10 -07:00
from .hdl.rec import Record
2018-12-15 07:23:42 -07:00
from .hdl.xfrm import ResetInserter, CEInserter
2018-12-15 07:23:42 -07:00
from .lib.cdc import MultiReg
# from .lib.io import