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