diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-11-18 09:56:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-18 09:56:36 +0100 |
commit | c01df04e32f7913622f40ced56fcb523ac96d35f (patch) | |
tree | 87bb6d6a666a4246aa90bae9838b82ba62c41574 /examples/intel | |
parent | 234726c65537cf665681bf9af5bda6d57a90df23 (diff) | |
parent | acee813a5c0d5517ea4123945e4971ddd2e5f3a4 (diff) | |
download | yosys-c01df04e32f7913622f40ced56fcb523ac96d35f.tar.gz yosys-c01df04e32f7913622f40ced56fcb523ac96d35f.tar.bz2 yosys-c01df04e32f7913622f40ced56fcb523ac96d35f.zip |
Merge pull request #453 from dh73/master
Updating Intel FPGA subsystem with Cyclone 10, minor changes in examples/intel directory and Speedster cells
Diffstat (limited to 'examples/intel')
-rw-r--r-- | examples/intel/DE2i-150/run_cycloneiv | 2 | ||||
-rw-r--r-- | examples/intel/MAX10/run_max10 | 2 | ||||
-rwxr-xr-x | examples/intel/asicworld_lfsr/run_cycloneiv | 2 | ||||
-rwxr-xr-x | examples/intel/asicworld_lfsr/run_max10 | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/intel/DE2i-150/run_cycloneiv b/examples/intel/DE2i-150/run_cycloneiv index 321ed2778..518807b57 100644 --- a/examples/intel/DE2i-150/run_cycloneiv +++ b/examples/intel/DE2i-150/run_cycloneiv @@ -1,2 +1,2 @@ #/bin/env bash -yosys -p "synth_intel -family cycloneiv -top top -vout top.vqm" top.v sevenseg.v +yosys -p "synth_intel -family cycloneiv -top top -vqm top.vqm" top.v sevenseg.v diff --git a/examples/intel/MAX10/run_max10 b/examples/intel/MAX10/run_max10 index ef7649afb..0378e4fa7 100644 --- a/examples/intel/MAX10/run_max10 +++ b/examples/intel/MAX10/run_max10 @@ -1 +1 @@ -yosys -p "synth_intel -family max10 -top top -vout top.vqm" top.v sevenseg.v +yosys -p "synth_intel -family max10 -top top -vqm top.vqm" top.v sevenseg.v diff --git a/examples/intel/asicworld_lfsr/run_cycloneiv b/examples/intel/asicworld_lfsr/run_cycloneiv index cb7f5c9b1..c7498bded 100755 --- a/examples/intel/asicworld_lfsr/run_cycloneiv +++ b/examples/intel/asicworld_lfsr/run_cycloneiv @@ -1,2 +1,2 @@ #!/bin/env bash -yosys -p "synth_intel -family cycloneiv -top lfsr_updown -vout top.vqm" lfsr_updown.v +yosys -p "synth_intel -family cycloneiv -top lfsr_updown -vqm top.vqm" lfsr_updown.v diff --git a/examples/intel/asicworld_lfsr/run_max10 b/examples/intel/asicworld_lfsr/run_max10 index 6bb812c16..b75d552bb 100755 --- a/examples/intel/asicworld_lfsr/run_max10 +++ b/examples/intel/asicworld_lfsr/run_max10 @@ -1,2 +1,2 @@ #!/bin/env bash -yosys -p "synth_intel -family max10 -top lfsr_updown -vout top.vqm" lfsr_updown.v +yosys -p "synth_intel -family max10 -top lfsr_updown -vqm top.vqm" lfsr_updown.v |