1
0
mirror of synced 2026-01-19 17:48:54 +00:00
2014-07-26 17:22:18 +02:00

7 lines
96 B
Bash
Executable File

#!/bin/bash
set -e
for x in *.ys; do
echo "Running $x.."
../../yosys -ql ${x%.ys}.log $x
done