diff options
author | David Shah <dave@ds0.me> | 2019-11-08 16:28:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-08 16:28:39 +0000 |
commit | 6a335411da6eb54f0960eb514c5384e4ae60c3a7 (patch) | |
tree | 0ff3e83dc88a2b59275136e098ba5e59ed473480 /generic/examples/simple.sh | |
parent | caf7abdb8dd7ec97801fd13efc8ae132e637ecd3 (diff) | |
parent | a4848f6902f81b6d3f2a36ab853922047e177288 (diff) | |
download | nextpnr-6a335411da6eb54f0960eb514c5384e4ae60c3a7.tar.gz nextpnr-6a335411da6eb54f0960eb514c5384e4ae60c3a7.tar.bz2 nextpnr-6a335411da6eb54f0960eb514c5384e4ae60c3a7.zip |
Merge pull request #350 from pepijndevos/newslice
Dedicated output for LUT in GENERIC_SLICE
Diffstat (limited to 'generic/examples/simple.sh')
-rwxr-xr-x | generic/examples/simple.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/examples/simple.sh b/generic/examples/simple.sh index 8ae903f9..76bc6168 100755 --- a/generic/examples/simple.sh +++ b/generic/examples/simple.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash set -ex yosys -p "tcl ../synth/synth_generic.tcl 4 blinky.json" blinky.v -${NEXTPNR:-../../nextpnr-generic} --pre-pack simple.py --pre-place simple_timing.py --json blinky.json --post-route bitstream.py +${NEXTPNR:-../../nextpnr-generic} --pre-pack simple.py --pre-place simple_timing.py --json blinky.json --post-route bitstream.py --write pnrblinky.json +yosys -p "read_verilog -lib ../synth/prims.v; read_json pnrblinky.json; dump -o blinky.il; show -format png -prefix blinky" |