URL
https://opencores.org/ocsvn/ethmac/ethmac/trunk
Subversion Repositories ethmac
[/] [ethmac/] [trunk/] [sim/] [rtl_sim/] [bin/] [run_sim] - Rev 291
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/csh -fset arg_num = $#argv; # number of argumentsif ($arg_num < 1) thenecho " "echo "Missing required ATS argument:"echo " '-r' for regression"echo " "exitendifset cur_arg = 1set arg_chk = 0set regression = 0while ($cur_arg <= $arg_num)if ("$argv[$cur_arg]" == "-r") then@ regression = 1@ arg_chk = $arg_chk + 1endifif ($arg_chk != $cur_arg) thenecho " "echo "Invalid argument $argv[$cur_arg]"echo " "exitendif@ cur_arg = $cur_arg + 1endif ($regression == 0) thenecho " "echo "Missing required ATS argument:"echo " '-r' for regression"echo " "exitelseecho " "echo "ATS running ethernet script with following argument:"echo " '-r' for regression"echo " "../run/run_eth_sim_regr.scr -rendif
Go to most recent revision | Compare with Previous | Blame | View Log
