hdl.ast: implement Array and ArrayProxy.
[nmigen.git] / nmigen / __init__.py
1 from .hdl.ast import Value, Const, Mux, Cat, Repl, Array, Signal, ClockSignal, ResetSignal
2 from .hdl.dsl import Module
3 from .hdl.cd import ClockDomain
4 from .hdl.ir import Fragment
5 from .hdl.xfrm import ResetInserter, CEInserter
6
7 from .lib.cdc import MultiReg