#!/bin/csh
#
#  This script runs the Verilog acceptance test...
#
#  Change the alias definition below to match the path name to 
#  the proper Verilog executable for your system, then run this
#  script from the unix prompt.
#
#
alias verilog  <your-path>/verilog.exe
#
verilog  -q accept.v
#
echo "  "
echo "  "
echo "Differences are printed below:   "
echo "  "
echo "  "
diff verilog.log accept.log | more
#
#
