Remove nmigen.lib from prelude.
Currently it's just MultiReg, and there's no particularly good reason to privilege this specific CDC primitive so much.
This commit is contained in:
parent
38831abdb4
commit
5e9587bbbd
|
@ -1,4 +1,5 @@
|
|||
from nmigen import *
|
||||
from nmigen.lib.cdc import MultiReg
|
||||
from nmigen.cli import main
|
||||
|
||||
|
||||
|
|
|
@ -5,4 +5,3 @@ except pkg_resources.DistributionNotFound:
|
|||
pass
|
||||
|
||||
from .hdl import *
|
||||
from .lib import *
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
from .cdc import MultiReg
|
|
@ -4,6 +4,7 @@ from .. import *
|
|||
from ..asserts import *
|
||||
from ..tools import log2_int
|
||||
from .coding import GrayEncoder
|
||||
from .cdc import MultiReg
|
||||
|
||||
|
||||
__all__ = ["FIFOInterface", "SyncFIFO", "SyncFIFOBuffered", "AsyncFIFO", "AsyncFIFOBuffered"]
|
||||
|
|
Loading…
Reference in a new issue