Rename fhdl→hdl, genlib→lib.

This commit is contained in:
whitequark 2018-12-15 14:23:42 +00:00
parent b5a1efa0c8
commit 790eb05a92
26 changed files with 50 additions and 50 deletions

View file

@ -1,5 +1,5 @@
from ... import tools
from ...fhdl import ast
from ...hdl import ast
from ...tools import deprecated

View file

@ -1,7 +1,7 @@
from collections.abc import Iterable
from ...tools import flatten, deprecated
from ...fhdl import dsl
from ...hdl import dsl
__all__ = ["Module", "FinalizeError"]

View file

@ -1,4 +1,4 @@
from ...genlib.io import TSTriple as NativeTSTriple
from ...lib.io import TSTriple as NativeTSTriple
__all__ = ["TSTriple"]

View file

@ -1,9 +1,9 @@
from collections import OrderedDict
from ...tools import deprecated
from ...fhdl import ast
from ...fhdl.ast import DUID, Value, Signal, Mux, Cat, Repl, Const, C, ClockSignal, ResetSignal
from ...fhdl.cd import ClockDomain
from ...hdl import ast
from ...hdl.ast import DUID, Value, Signal, Mux, Cat, Repl, Const, C, ClockSignal, ResetSignal
from ...hdl.cd import ClockDomain
__all__ = ["DUID", "wrap", "Mux", "Cat", "Replicate", "Constant", "C", "Signal", "ClockSignal",