mirror of https://github.com/YosysHQ/yosys.git
7 lines
98 B
Bash
7 lines
98 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
for x in *.ys; do
|
||
|
echo "Running $x.."
|
||
|
../../yosys -ql ${x%.ys}.log $x
|
||
|
done
|