diff options
author | Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | 2020-03-26 17:42:33 -0300 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2020-03-27 07:33:27 +0100 |
commit | 3f4bffc64af13ca1d255e525e58106ba6525efa9 (patch) | |
tree | df301eafbd5e76c5e447276c654601fa9802bee6 | |
parent | c975230114caebe442e0ec403796771caf70925d (diff) | |
download | ghdl-yosys-plugin-3f4bffc64af13ca1d255e525e58106ba6525efa9.tar.gz ghdl-yosys-plugin-3f4bffc64af13ca1d255e525e58106ba6525efa9.tar.bz2 ghdl-yosys-plugin-3f4bffc64af13ca1d255e525e58106ba6525efa9.zip |
Fixed URL of the ghdl/synth Docker image
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -100,7 +100,7 @@ Alternatively, it is possible to analyze, elaborate and synthesize VHDL sources ## Docker -Docker image [`ghdl/synth:beta`](https://cloud.docker.com/u/ghdl/repository/docker/ghdl/synth/tags) includes yosys, and the ghdl module (shared library). These can be used to synthesize designs straightaway. For example: +Docker image [`ghdl/synth:beta`](https://hub.docker.com/r/ghdl/synth/tags) includes yosys, and the ghdl module (shared library). These can be used to synthesize designs straightaway. For example: ```sh docker run --rm -t \ @@ -110,6 +110,8 @@ docker run --rm -t \ yosys -m ghdl -p 'ghdl icestick/leds.vhdl icestick/blink.vhdl -e leds; synth_ice40 -blif leds.blif' ``` +> In a system with [docker](https://docs.docker.com/install) installed, the image is automatically downloaded the first time invoked. + Furthermore, the snippet above can be extended in order to P&R the design with [nextpnr](https://github.com/YosysHQ/nextpnr) and generate a bitstream with [icestorm](https://github.com/cliffordwolf/icestorm) tools: ```sh |