mirror of https://github.com/YosysHQ/yosys.git
12 lines
136 B
Bash
12 lines
136 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
source common.sh
|
||
|
|
||
|
f=$1
|
||
|
n=$(basename ${f%.v})
|
||
|
|
||
|
test_equiv mapopt "opt; techmap; opt" "-set-def-inputs" $n $f
|
||
|
|
||
|
exit 0
|