parent
7f1397b281
commit
5a17f94fdc
10 changed files with 327 additions and 278 deletions
|
|
@ -1,7 +1,11 @@
|
|||
# amaranth: UnusedElaboratable=no
|
||||
|
||||
import warnings
|
||||
|
||||
from amaranth import *
|
||||
from amaranth.hdl.rec import *
|
||||
with warnings.catch_warnings():
|
||||
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
|
||||
from amaranth.hdl.rec import *
|
||||
from amaranth.lib.io import *
|
||||
from amaranth.build.dsl import *
|
||||
from amaranth.build.res import *
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
import warnings
|
||||
|
||||
from enum import Enum
|
||||
|
||||
from amaranth.hdl.ast import *
|
||||
from amaranth.hdl.rec import *
|
||||
with warnings.catch_warnings():
|
||||
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
|
||||
from amaranth.hdl.rec import *
|
||||
|
||||
from .utils import *
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
import warnings
|
||||
|
||||
from amaranth.hdl import *
|
||||
from amaranth.hdl.rec import *
|
||||
with warnings.catch_warnings():
|
||||
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
|
||||
from amaranth.hdl.rec import *
|
||||
from amaranth.sim import *
|
||||
from amaranth.lib.io import *
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,9 @@ from amaranth._utils import flatten
|
|||
from amaranth.hdl.ast import *
|
||||
from amaranth.hdl.cd import *
|
||||
from amaranth.hdl.mem import *
|
||||
from amaranth.hdl.rec import *
|
||||
with warnings.catch_warnings():
|
||||
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
|
||||
from amaranth.hdl.rec import *
|
||||
from amaranth.hdl.dsl import *
|
||||
from amaranth.hdl.ir import *
|
||||
from amaranth.sim import *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue