mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-02 13:27:02 +00:00
11 lines
142 B
Bash
11 lines
142 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
source common.sh
|
|
|
|
f=$1
|
|
n=$(basename ${f%.v})
|
|
|
|
test_equiv mapopt "opt -fine; techmap; opt" "-set-def-inputs" $n $f
|
|
|
|
exit 0
|