2013-01-05 04:13:26 -06:00
|
|
|
#!/bin/bash
|
2013-03-16 15:21:38 -05:00
|
|
|
|
|
|
|
# check for Icarus Verilog
|
|
|
|
if ! which iverilog > /dev/null ; then
|
|
|
|
echo "$0: Error: Icarus Verilog 'iverilog' not found."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2014-07-16 03:03:07 -05:00
|
|
|
exec bash ../tools/autotest.sh -G *.v
|