URL
https://opencores.org/ocsvn/srdydrdy_lib/srdydrdy_lib/trunk
Subversion Repositories srdydrdy_lib
[/] [srdydrdy_lib/] [trunk/] [examples/] [bridge/] [env/] [run] - Rev 14
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/bash
TESTNAME=$1
shift
which iverilog &> /dev/null
if [ "$?" == "0" ]; then
iverilog -f bridge.vf tests/$TESTNAME.v $*
./a.out
else
vcs -full64 +v2k -R -I -f bridge.vf tests/$TESTNAME.v $*
fi
Go to most recent revision | Compare with Previous | Blame | View Log