mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
12 lines
234 B
Bash
Executable file
12 lines
234 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
for x in *.v; do
|
|
echo "Running $x.."
|
|
../../yosys -q -s check_map.ys -l ${x%.v}.log $x
|
|
done
|
|
|
|
for x in map_cmp.v; do
|
|
echo "Running $x.."
|
|
../../yosys -q -s check_map_lut6.ys -l ${x%.v}_lut6.log $x
|
|
done
|