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