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 ..fhdl.ast import *
from ..hdl.ast import *
from .tools import *

View file

@ -1,4 +1,4 @@
from ..fhdl.cd import *
from ..hdl.cd import *
from .tools import *

View file

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

View file

@ -1,6 +1,6 @@
from ..fhdl.ast import *
from ..fhdl.cd import *
from ..fhdl.ir import *
from ..hdl.ast import *
from ..hdl.cd import *
from ..hdl.ir import *
from .tools import *

View file

@ -1,7 +1,7 @@
from ..fhdl.ast import *
from ..fhdl.cd import *
from ..fhdl.ir import *
from ..fhdl.xfrm import *
from ..hdl.ast import *
from ..hdl.cd import *
from ..hdl.ir import *
from ..hdl.xfrm import *
from .tools import *

View file

@ -1,6 +1,6 @@
from .tools import *
from ..fhdl.ast import *
from ..fhdl.ir import *
from ..hdl.ast import *
from ..hdl.ir import *
from ..back.pysim import *

View file

@ -3,7 +3,7 @@ import unittest
import warnings
from contextlib import contextmanager
from ..fhdl.ast import *
from ..hdl.ast import *
__all__ = ["FHDLTestCase"]