Skip to content

Commit b0bcb8d

Browse files
committed
wip
1 parent 4dadf9f commit b0bcb8d

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

chipflow_lib/platforms/sim.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
from pathlib import Path
66

77
from amaranth import *
8-
from amaranth.lib import wiring, io
8+
from amaranth.lib import io
99
from amaranth.back import rtlil
1010
from amaranth.hdl._ir import PortDirection
11+
from amaranth.lib.cdc import FFSynchronizer
1112

1213
from .. import ChipFlowError
13-
from .silicon import SiliconPlatformPort, FFSynchronizer
14-
from .utils import load_pinlock, Port
14+
from .utils import load_pinlock
1515

1616
__all__ = ["SimPlatform"]
1717

chipflow_lib/steps/sim.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@
1111
from doit.task import dict_to_task
1212

1313
from amaranth import *
14-
from amaranth.lib import wiring, io
15-
from amaranth.lib.cdc import FFSynchronizer
16-
from amaranth.back import rtlil
1714

1815
from .. import ChipFlowError, _ensure_chipflow_root
1916
from . import StepBase
20-
from ..platforms import SimPlatform, top_interfaces, load_pinlock
21-
from ..platforms.utils import IOSignature, load_pinlock, Port
17+
from ..platforms import SimPlatform, top_interfaces
18+
from ..platforms.utils import IOSignature
2219
from ..platforms.sim import VARIABLES, TASKS, DOIT_CONFIG
2320

2421

0 commit comments

Comments
 (0)