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