Rename fhdl→hdl, genlib→lib.
This commit is contained in:
parent
b5a1efa0c8
commit
790eb05a92
26 changed files with 50 additions and 50 deletions
|
|
@ -1,4 +1,4 @@
|
|||
from ..fhdl.ast import *
|
||||
from ..hdl.ast import *
|
||||
from .tools import *
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from ..fhdl.cd import *
|
||||
from ..hdl.cd import *
|
||||
from .tools import *
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
from ..fhdl.ast import *
|
||||
from ..fhdl.dsl import *
|
||||
from ..hdl.ast import *
|
||||
from ..hdl.dsl import *
|
||||
from .tools import *
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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 *
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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 *
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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 *
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import unittest
|
|||
import warnings
|
||||
from contextlib import contextmanager
|
||||
|
||||
from ..fhdl.ast import *
|
||||
from ..hdl.ast import *
|
||||
|
||||
|
||||
__all__ = ["FHDLTestCase"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue