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