├── .gitattributes ├── .github ├── dependabot.yml ├── latest.patch ├── scripts │ ├── build-examples.sh │ ├── common.sh │ ├── generate_job_matrices.py │ └── install-toolchain.sh └── workflows │ ├── Automerge.yml │ ├── Latest.yml │ └── sphinx-tuttest.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── .style.yapf ├── LICENSE ├── Makefile ├── README.md ├── common ├── common.mk └── requirements.txt ├── docs ├── .gitattributes ├── .gitignore ├── Makefile ├── _static │ ├── favicon.svg │ ├── images │ │ ├── arty-usb-ethernet.png │ │ ├── arty.png │ │ ├── basys3-usb.png │ │ ├── basys3.png │ │ ├── counter-example-arty.gif │ │ ├── counter-example-basys3.gif │ │ ├── counter-example-zyboz7-clken.gif │ │ ├── counter-example-zyboz7-reverse.gif │ │ ├── counter-example-zyboz7.gif │ │ ├── ethernet-cable.png │ │ ├── linux-example-arty.jpg │ │ ├── linux-example-console.gif │ │ ├── litex-picorv32-console.gif │ │ ├── picosoc-example-basys3.gif │ │ ├── pwm.gif │ │ ├── tftp-server-status.png │ │ ├── timer.gif │ │ ├── usb-a-to-micro-b-cable.png │ │ ├── zyboz7-jmp.png │ │ ├── zyboz7-sdcard.png │ │ └── zyboz7-usb.png │ └── logo.svg ├── basys3.rst ├── building-examples.rst ├── collect_readmes.py ├── conf.py ├── customizing-makefiles.rst ├── development │ ├── building-docs.rst │ └── running-ci-locally.rst ├── eos-s3 │ └── btn_counter.rst ├── getting.rst ├── index.rst ├── personal-designs.rst ├── project-f.rst ├── requirements.txt ├── running-examples.rst ├── templates │ └── example.jinja └── xc7 │ ├── counter_test.rst │ ├── linux_litex_demo.rst │ ├── litex_demo.rst │ ├── litex_sata_demo.rst │ ├── picosoc_demo.rst │ ├── pulse_width_led.rst │ └── timer.rst ├── eos-s3 ├── btn_counter │ ├── Makefile │ ├── README.rst │ ├── btn_counter.v │ ├── chandalar.pcf │ ├── dummy.sdc │ └── flow.json ├── environment.yml └── requirements.txt ├── projf-makefiles └── hello │ └── hello-arty │ ├── A │ ├── Makefile │ └── README.rst │ ├── B │ ├── Makefile │ └── README.rst │ ├── C │ ├── Makefile │ └── README.rst │ ├── D │ ├── Makefile │ └── README.rst │ ├── E │ ├── Makefile │ └── README.rst │ ├── F │ ├── Makefile │ └── README.rst │ ├── G │ ├── Makefile │ └── README.rst │ ├── H │ ├── Makefile │ └── README.rst │ ├── I │ ├── Makefile │ └── README.rst │ ├── J │ ├── Makefile │ └── README.rst │ ├── K │ ├── Makefile │ └── README.rst │ └── L │ ├── Makefile │ └── README.rst ├── scripts └── make │ └── conda.mk └── xc7 ├── README.rst ├── additional_examples ├── button_controller │ ├── Makefile │ ├── README.rst │ ├── basys3.xdc │ ├── button_controller.sv │ ├── debounce.sv │ ├── display_control.sv │ └── timer.sv └── images │ └── debounce.gif ├── counter_test ├── Makefile ├── README.rst ├── arty.xdc ├── basys3.xdc ├── counter.v ├── counter_zynq.v ├── flow.json ├── nexys4ddr.xdc ├── nexys_video.xdc └── zybo.xdc ├── environment.yml ├── linux_litex_demo ├── Makefile ├── README.rst ├── arty.pcf ├── arty.sdc ├── arty.xdc ├── baselitex_arty.v ├── buildroot │ ├── Image │ ├── rootfs.cpio │ └── rv32.dtb ├── emulator │ └── emulator.bin ├── images.json ├── mem.init ├── mem_1.init └── mem_2.init ├── litex_demo ├── .gitignore ├── README.rst └── requirements.txt ├── litex_sata_demo ├── Makefile ├── README.rst ├── litesata.v ├── mem.init ├── mem_1.init ├── mem_2.init └── nexys_video.xdc ├── picosoc_demo ├── Makefile ├── README.rst ├── arty.pcf ├── arty.v ├── basys3.pcf ├── basys3.v ├── nexys4ddr.pcf ├── nexys4ddr.v ├── picorv32.v ├── picosoc.sdc ├── picosoc_noflash.v ├── progmem.v └── simpleuart.v ├── pulse_width_led ├── Makefile ├── PWM.v ├── README.rst ├── arty_35.xdc └── pulse_led.v ├── requirements.txt └── timer ├── Makefile ├── README.rst ├── basys3.xdc ├── clock.sv ├── display_control.sv ├── modify_count.sv ├── time_counter.sv └── timer.sv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/latest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/latest.patch -------------------------------------------------------------------------------- /.github/scripts/build-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/scripts/build-examples.sh -------------------------------------------------------------------------------- /.github/scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/scripts/common.sh -------------------------------------------------------------------------------- /.github/scripts/generate_job_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/scripts/generate_job_matrices.py -------------------------------------------------------------------------------- /.github/scripts/install-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/scripts/install-toolchain.sh -------------------------------------------------------------------------------- /.github/workflows/Automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/workflows/Automerge.yml -------------------------------------------------------------------------------- /.github/workflows/Latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/workflows/Latest.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx-tuttest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.github/workflows/sphinx-tuttest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | env 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/.style.yapf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/README.md -------------------------------------------------------------------------------- /common/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/common/common.mk -------------------------------------------------------------------------------- /common/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/common/requirements.txt -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/.gitattributes -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/favicon.svg -------------------------------------------------------------------------------- /docs/_static/images/arty-usb-ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/arty-usb-ethernet.png -------------------------------------------------------------------------------- /docs/_static/images/arty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/arty.png -------------------------------------------------------------------------------- /docs/_static/images/basys3-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/basys3-usb.png -------------------------------------------------------------------------------- /docs/_static/images/basys3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/basys3.png -------------------------------------------------------------------------------- /docs/_static/images/counter-example-arty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/counter-example-arty.gif -------------------------------------------------------------------------------- /docs/_static/images/counter-example-basys3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/counter-example-basys3.gif -------------------------------------------------------------------------------- /docs/_static/images/counter-example-zyboz7-clken.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/counter-example-zyboz7-clken.gif -------------------------------------------------------------------------------- /docs/_static/images/counter-example-zyboz7-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/counter-example-zyboz7-reverse.gif -------------------------------------------------------------------------------- /docs/_static/images/counter-example-zyboz7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/counter-example-zyboz7.gif -------------------------------------------------------------------------------- /docs/_static/images/ethernet-cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/ethernet-cable.png -------------------------------------------------------------------------------- /docs/_static/images/linux-example-arty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/linux-example-arty.jpg -------------------------------------------------------------------------------- /docs/_static/images/linux-example-console.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/linux-example-console.gif -------------------------------------------------------------------------------- /docs/_static/images/litex-picorv32-console.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/litex-picorv32-console.gif -------------------------------------------------------------------------------- /docs/_static/images/picosoc-example-basys3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/picosoc-example-basys3.gif -------------------------------------------------------------------------------- /docs/_static/images/pwm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/pwm.gif -------------------------------------------------------------------------------- /docs/_static/images/tftp-server-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/tftp-server-status.png -------------------------------------------------------------------------------- /docs/_static/images/timer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/timer.gif -------------------------------------------------------------------------------- /docs/_static/images/usb-a-to-micro-b-cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/usb-a-to-micro-b-cable.png -------------------------------------------------------------------------------- /docs/_static/images/zyboz7-jmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/zyboz7-jmp.png -------------------------------------------------------------------------------- /docs/_static/images/zyboz7-sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/zyboz7-sdcard.png -------------------------------------------------------------------------------- /docs/_static/images/zyboz7-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/images/zyboz7-usb.png -------------------------------------------------------------------------------- /docs/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/_static/logo.svg -------------------------------------------------------------------------------- /docs/basys3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/basys3.rst -------------------------------------------------------------------------------- /docs/building-examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/building-examples.rst -------------------------------------------------------------------------------- /docs/collect_readmes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/collect_readmes.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/customizing-makefiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/customizing-makefiles.rst -------------------------------------------------------------------------------- /docs/development/building-docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/development/building-docs.rst -------------------------------------------------------------------------------- /docs/development/running-ci-locally.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/development/running-ci-locally.rst -------------------------------------------------------------------------------- /docs/eos-s3/btn_counter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/eos-s3/btn_counter.rst -------------------------------------------------------------------------------- /docs/getting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/getting.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/personal-designs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/personal-designs.rst -------------------------------------------------------------------------------- /docs/project-f.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/project-f.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/running-examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/running-examples.rst -------------------------------------------------------------------------------- /docs/templates/example.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/templates/example.jinja -------------------------------------------------------------------------------- /docs/xc7/counter_test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/xc7/counter_test.rst -------------------------------------------------------------------------------- /docs/xc7/linux_litex_demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/xc7/linux_litex_demo.rst -------------------------------------------------------------------------------- /docs/xc7/litex_demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/xc7/litex_demo.rst -------------------------------------------------------------------------------- /docs/xc7/litex_sata_demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/xc7/litex_sata_demo.rst -------------------------------------------------------------------------------- /docs/xc7/picosoc_demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/xc7/picosoc_demo.rst -------------------------------------------------------------------------------- /docs/xc7/pulse_width_led.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/xc7/pulse_width_led.rst -------------------------------------------------------------------------------- /docs/xc7/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/docs/xc7/timer.rst -------------------------------------------------------------------------------- /eos-s3/btn_counter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/eos-s3/btn_counter/Makefile -------------------------------------------------------------------------------- /eos-s3/btn_counter/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/eos-s3/btn_counter/README.rst -------------------------------------------------------------------------------- /eos-s3/btn_counter/btn_counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/eos-s3/btn_counter/btn_counter.v -------------------------------------------------------------------------------- /eos-s3/btn_counter/chandalar.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/eos-s3/btn_counter/chandalar.pcf -------------------------------------------------------------------------------- /eos-s3/btn_counter/dummy.sdc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eos-s3/btn_counter/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/eos-s3/btn_counter/flow.json -------------------------------------------------------------------------------- /eos-s3/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/eos-s3/environment.yml -------------------------------------------------------------------------------- /eos-s3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/eos-s3/requirements.txt -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/A/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/A/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/A/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/A/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/B/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/B/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/B/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/B/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/C/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/C/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/C/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/D/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/D/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/D/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/E/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/E/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/E/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/E/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/F/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/F/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/F/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/F/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/G/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/G/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/G/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/G/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/H/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/H/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/H/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/H/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/I/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/I/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/I/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/I/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/J/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/J/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/J/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/J/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/K/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/K/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/K/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/K/README.rst -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/L/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/L/Makefile -------------------------------------------------------------------------------- /projf-makefiles/hello/hello-arty/L/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/projf-makefiles/hello/hello-arty/L/README.rst -------------------------------------------------------------------------------- /scripts/make/conda.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/scripts/make/conda.mk -------------------------------------------------------------------------------- /xc7/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/README.rst -------------------------------------------------------------------------------- /xc7/additional_examples/button_controller/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/button_controller/Makefile -------------------------------------------------------------------------------- /xc7/additional_examples/button_controller/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/button_controller/README.rst -------------------------------------------------------------------------------- /xc7/additional_examples/button_controller/basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/button_controller/basys3.xdc -------------------------------------------------------------------------------- /xc7/additional_examples/button_controller/button_controller.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/button_controller/button_controller.sv -------------------------------------------------------------------------------- /xc7/additional_examples/button_controller/debounce.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/button_controller/debounce.sv -------------------------------------------------------------------------------- /xc7/additional_examples/button_controller/display_control.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/button_controller/display_control.sv -------------------------------------------------------------------------------- /xc7/additional_examples/button_controller/timer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/button_controller/timer.sv -------------------------------------------------------------------------------- /xc7/additional_examples/images/debounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/additional_examples/images/debounce.gif -------------------------------------------------------------------------------- /xc7/counter_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/Makefile -------------------------------------------------------------------------------- /xc7/counter_test/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/README.rst -------------------------------------------------------------------------------- /xc7/counter_test/arty.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/arty.xdc -------------------------------------------------------------------------------- /xc7/counter_test/basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/basys3.xdc -------------------------------------------------------------------------------- /xc7/counter_test/counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/counter.v -------------------------------------------------------------------------------- /xc7/counter_test/counter_zynq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/counter_zynq.v -------------------------------------------------------------------------------- /xc7/counter_test/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/flow.json -------------------------------------------------------------------------------- /xc7/counter_test/nexys4ddr.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/nexys4ddr.xdc -------------------------------------------------------------------------------- /xc7/counter_test/nexys_video.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/nexys_video.xdc -------------------------------------------------------------------------------- /xc7/counter_test/zybo.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/counter_test/zybo.xdc -------------------------------------------------------------------------------- /xc7/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/environment.yml -------------------------------------------------------------------------------- /xc7/linux_litex_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/Makefile -------------------------------------------------------------------------------- /xc7/linux_litex_demo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/README.rst -------------------------------------------------------------------------------- /xc7/linux_litex_demo/arty.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/arty.pcf -------------------------------------------------------------------------------- /xc7/linux_litex_demo/arty.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/arty.sdc -------------------------------------------------------------------------------- /xc7/linux_litex_demo/arty.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/arty.xdc -------------------------------------------------------------------------------- /xc7/linux_litex_demo/baselitex_arty.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/baselitex_arty.v -------------------------------------------------------------------------------- /xc7/linux_litex_demo/buildroot/Image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/buildroot/Image -------------------------------------------------------------------------------- /xc7/linux_litex_demo/buildroot/rootfs.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/buildroot/rootfs.cpio -------------------------------------------------------------------------------- /xc7/linux_litex_demo/buildroot/rv32.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/buildroot/rv32.dtb -------------------------------------------------------------------------------- /xc7/linux_litex_demo/emulator/emulator.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/emulator/emulator.bin -------------------------------------------------------------------------------- /xc7/linux_litex_demo/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/images.json -------------------------------------------------------------------------------- /xc7/linux_litex_demo/mem.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/linux_litex_demo/mem.init -------------------------------------------------------------------------------- /xc7/linux_litex_demo/mem_1.init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xc7/linux_litex_demo/mem_2.init: -------------------------------------------------------------------------------- 1 | 4e 2 | 65 3 | 74 4 | 53 5 | 6f 6 | 43 7 | 0 8 | -------------------------------------------------------------------------------- /xc7/litex_demo/.gitignore: -------------------------------------------------------------------------------- 1 | # Litex directory 2 | 3 | src 4 | -------------------------------------------------------------------------------- /xc7/litex_demo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_demo/README.rst -------------------------------------------------------------------------------- /xc7/litex_demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_demo/requirements.txt -------------------------------------------------------------------------------- /xc7/litex_sata_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_sata_demo/Makefile -------------------------------------------------------------------------------- /xc7/litex_sata_demo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_sata_demo/README.rst -------------------------------------------------------------------------------- /xc7/litex_sata_demo/litesata.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_sata_demo/litesata.v -------------------------------------------------------------------------------- /xc7/litex_sata_demo/mem.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_sata_demo/mem.init -------------------------------------------------------------------------------- /xc7/litex_sata_demo/mem_1.init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xc7/litex_sata_demo/mem_2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_sata_demo/mem_2.init -------------------------------------------------------------------------------- /xc7/litex_sata_demo/nexys_video.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/litex_sata_demo/nexys_video.xdc -------------------------------------------------------------------------------- /xc7/picosoc_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/Makefile -------------------------------------------------------------------------------- /xc7/picosoc_demo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/README.rst -------------------------------------------------------------------------------- /xc7/picosoc_demo/arty.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/arty.pcf -------------------------------------------------------------------------------- /xc7/picosoc_demo/arty.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/arty.v -------------------------------------------------------------------------------- /xc7/picosoc_demo/basys3.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/basys3.pcf -------------------------------------------------------------------------------- /xc7/picosoc_demo/basys3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/basys3.v -------------------------------------------------------------------------------- /xc7/picosoc_demo/nexys4ddr.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/nexys4ddr.pcf -------------------------------------------------------------------------------- /xc7/picosoc_demo/nexys4ddr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/nexys4ddr.v -------------------------------------------------------------------------------- /xc7/picosoc_demo/picorv32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/picorv32.v -------------------------------------------------------------------------------- /xc7/picosoc_demo/picosoc.sdc: -------------------------------------------------------------------------------- 1 | create_clock -period 10 clk_bufg 2 | -------------------------------------------------------------------------------- /xc7/picosoc_demo/picosoc_noflash.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/picosoc_noflash.v -------------------------------------------------------------------------------- /xc7/picosoc_demo/progmem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/progmem.v -------------------------------------------------------------------------------- /xc7/picosoc_demo/simpleuart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/picosoc_demo/simpleuart.v -------------------------------------------------------------------------------- /xc7/pulse_width_led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/pulse_width_led/Makefile -------------------------------------------------------------------------------- /xc7/pulse_width_led/PWM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/pulse_width_led/PWM.v -------------------------------------------------------------------------------- /xc7/pulse_width_led/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/pulse_width_led/README.rst -------------------------------------------------------------------------------- /xc7/pulse_width_led/arty_35.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/pulse_width_led/arty_35.xdc -------------------------------------------------------------------------------- /xc7/pulse_width_led/pulse_led.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/pulse_width_led/pulse_led.v -------------------------------------------------------------------------------- /xc7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/requirements.txt -------------------------------------------------------------------------------- /xc7/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/Makefile -------------------------------------------------------------------------------- /xc7/timer/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/README.rst -------------------------------------------------------------------------------- /xc7/timer/basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/basys3.xdc -------------------------------------------------------------------------------- /xc7/timer/clock.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/clock.sv -------------------------------------------------------------------------------- /xc7/timer/display_control.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/display_control.sv -------------------------------------------------------------------------------- /xc7/timer/modify_count.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/modify_count.sv -------------------------------------------------------------------------------- /xc7/timer/time_counter.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/time_counter.sv -------------------------------------------------------------------------------- /xc7/timer/timer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/f4pga-examples/HEAD/xc7/timer/timer.sv --------------------------------------------------------------------------------