├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── amaranth_examples ├── __init__.py ├── comb_test.py ├── connectors.py ├── counter.py ├── custom_board.py ├── ddr.py ├── instance.py ├── pll_ecp5.py ├── pll_ice40.py └── spi_oversampled.py ├── poetry.lock └── pyproject.toml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | build/ 3 | *.vcd 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/README.md -------------------------------------------------------------------------------- /amaranth_examples/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.0' 2 | -------------------------------------------------------------------------------- /amaranth_examples/comb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/comb_test.py -------------------------------------------------------------------------------- /amaranth_examples/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/connectors.py -------------------------------------------------------------------------------- /amaranth_examples/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/counter.py -------------------------------------------------------------------------------- /amaranth_examples/custom_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/custom_board.py -------------------------------------------------------------------------------- /amaranth_examples/ddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/ddr.py -------------------------------------------------------------------------------- /amaranth_examples/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/instance.py -------------------------------------------------------------------------------- /amaranth_examples/pll_ecp5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/pll_ecp5.py -------------------------------------------------------------------------------- /amaranth_examples/pll_ice40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/pll_ice40.py -------------------------------------------------------------------------------- /amaranth_examples/spi_oversampled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/amaranth_examples/spi_oversampled.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgreig/amaranth-examples/HEAD/pyproject.toml --------------------------------------------------------------------------------