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",

View file

@ -1,4 +1,4 @@
from ...genlib.cdc import MultiReg
from ...lib.cdc import MultiReg
__all__ = ["MultiReg"]

View file

@ -1,8 +1,8 @@
import warnings
from collections import OrderedDict
from ...fhdl.xfrm import ValueTransformer, StatementTransformer
from ...fhdl.ast import *
from ...hdl.xfrm import ValueTransformer, StatementTransformer
from ...hdl.ast import *
from ..fhdl.module import CompatModule, CompatFinalizeError
from ..fhdl.structure import If, Case