mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 01:54:10 +00:00
7 lines
114 B
Bash
Executable file
7 lines
114 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
for x in *.v; do
|
|
echo "Running $x.."
|
|
../../yosys -q -s check_map.ys -l ${x%.v}.log $x
|
|
done
|