meta: fix circular imports

This commit is contained in:
Fischer Moseley 2024-08-09 12:51:47 -07:00
parent c38e6b5b40
commit 1b6127eb70
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -6,6 +6,7 @@
venv/
manta.egg-info/
.pytest_cache
.ruff_cache
__pycache__/
build/

View File

@ -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

View File

@ -1,4 +1,4 @@
from manta.logic_analyzer import TriggerModes
from manta.logic_analyzer.fsm import TriggerModes
from manta.logic_analyzer.playback import LogicAnalyzerPlayback