mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 09:55:20 +00:00
9 lines
187 B
Bash
Executable file
9 lines
187 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Running syntax check on arch sim models"
|
|
for arch in ../../techlibs/*; do
|
|
find $arch -name cells_sim.v -print0 | xargs -0 -n1 -r iverilog -t null -I$arch
|
|
done
|