meta: fix circular imports
This commit is contained in:
parent
5164dea212
commit
c59132a319
|
|
@ -6,6 +6,7 @@
|
||||||
venv/
|
venv/
|
||||||
manta.egg-info/
|
manta.egg-info/
|
||||||
.pytest_cache
|
.pytest_cache
|
||||||
|
.ruff_cache
|
||||||
__pycache__/
|
__pycache__/
|
||||||
build/
|
build/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Although modern HDLs are rising in popularity, most existing FPGA designs use a
|
||||||
|
|
||||||
!!! success "VHDL works too!"
|
!!! 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
|
### 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
|
from manta.logic_analyzer.playback import LogicAnalyzerPlayback
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue