gitextract_iw5zrkjd/ ├── .flake8 ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── lint.yml │ ├── regression.yml │ └── wheels.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── bitstream_format.rst │ ├── conf.py │ ├── design_preparation.rst │ ├── execution.rst │ ├── external_links.rst │ ├── index.rst │ ├── pin_constraints.rst │ ├── prerequisites.rst │ ├── sc_preparation.rst │ ├── timing_constraints.rst │ └── tool_installations.rst ├── examples/ │ ├── __init__.py │ ├── adder/ │ │ ├── adder.pcf │ │ ├── adder.py │ │ ├── adder.v │ │ └── pin_constraints.py │ ├── eth_mac_1g/ │ │ ├── constraints/ │ │ │ └── z1000/ │ │ │ └── pin_constraints.pcf │ │ ├── eth_mac_1g.py │ │ ├── eth_mac_1g.sdc │ │ └── eth_mac_1g_wrapper.v │ └── picorv32/ │ ├── constraints/ │ │ └── z1062/ │ │ └── picorv32.pcf │ ├── picorv32.py │ └── picorv32.sdc ├── logik/ │ ├── __init__.py │ ├── devices/ │ │ ├── __init__.py │ │ └── logik_fpga.py │ ├── flows/ │ │ ├── __init__.py │ │ └── logik_flow.py │ └── tools/ │ ├── __init__.py │ └── fasm_to_bitstream/ │ ├── __init__.py │ ├── bitstream_bin_convert.py │ ├── bitstream_finish.py │ └── fasm_to_bitstream.py ├── pyproject.toml └── tests/ ├── conftest.py ├── data/ │ └── z1000.py └── examples/ ├── test_adder.py ├── test_eth_mac_1g.py ├── test_files.py └── test_picorv32.py