mirror of https://github.com/YosysHQ/yosys.git
11 lines
234 B
Bash
11 lines
234 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
for x in *.lib; do
|
||
|
echo "Running $x.."
|
||
|
echo "read_verilog small.v" > test.ys
|
||
|
echo "synth -top small" >> test.ys
|
||
|
echo "dfflibmap -liberty ${x}" >> test.ys
|
||
|
../../yosys -ql ${x%.lib}.log -s test.ys
|
||
|
done
|