Initial commit

This commit is contained in:
2025-09-14 19:55:43 +02:00
commit 7b5ecda692
17 changed files with 361 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
Create a venv
`python -m venv .venv`
Activate the venv
`. .vent/bin/activate`
Install the dependencies
`pip install -r requirements.txt`
You will potentially need more tooling to create the bitstream and flash the bitstream for the specific FPGA. In my case I'm working with an IceBreaker. So I've installed the `nextpnr-ice40` toolchain. Yosys is builtin to amaranth, that is why I'm running it within an venv to ensure it doesn't mess with system installed packages.