meta: fix circular imports
This commit is contained in:
parent
c38e6b5b40
commit
1b6127eb70
|
|
@ -6,6 +6,7 @@
|
|||
venv/
|
||||
manta.egg-info/
|
||||
.pytest_cache
|
||||
.ruff_cache
|
||||
__pycache__/
|
||||
build/
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ Although modern HDLs are rising in popularity, most existing FPGA designs use a
|
|||
|
||||
!!! success "VHDL works too!"
|
||||
|
||||
If your FPGA design is VHDL-based, fret not! Most synthesis tools support mixed-language projects, and will happily ingest both a Verilog-based Manta module inside of a VHDL-based design. Just take care to ensure that the interfaces match.
|
||||
If your FPGA design is VHDL-based, fret not! Most synthesis tools support mixed-language projects, and will happily ingest both a Verilog-based Manta module inside of a VHDL-based design. Just take care to ensure that interfaces match between the VHDL and Verilog modules.
|
||||
|
||||
### Example
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from manta.logic_analyzer import TriggerModes
|
||||
from manta.logic_analyzer.fsm import TriggerModes
|
||||
from manta.logic_analyzer.playback import LogicAnalyzerPlayback
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue