diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-02-03 14:57:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-03 14:57:17 +0100 |
commit | 34d2fbd2f96a8789aa7eb655318308e11949eb7a (patch) | |
tree | 246fac88cc076f041cb9194bf6e4f954d50fd78c /tests/arch/xilinx | |
parent | 7033503cd9e40e16c11fe6c805a436b0e23989dd (diff) | |
download | yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.tar.gz yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.tar.bz2 yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.zip |
Add opt_lut_ins pass. (#1673)
Diffstat (limited to 'tests/arch/xilinx')
-rw-r--r-- | tests/arch/xilinx/opt_lut_ins.ys | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/arch/xilinx/opt_lut_ins.ys b/tests/arch/xilinx/opt_lut_ins.ys new file mode 100644 index 000000000..a01d02179 --- /dev/null +++ b/tests/arch/xilinx/opt_lut_ins.ys @@ -0,0 +1,25 @@ +read_ilang << EOF + +module \top + + wire width 4 input 1 \A + + wire output 2 \O + + cell \LUT4 $0 + parameter \INIT 16'1111110011000000 + connect \I0 \A [0] + connect \I1 \A [1] + connect \I2 \A [2] + connect \I3 \A [3] + connect \O \O + end +end + +EOF + +equiv_opt -assert -map +/xilinx/cells_sim.v opt_lut_ins -tech xilinx + +design -load postopt + +select -assert-count 1 t:LUT3 |