URL
https://opencores.org/ocsvn/robust_reg/robust_reg/trunk
Subversion Repositories robust_reg
[/] [robust_reg/] [trunk/] [run/] [run.sh] - Rev 10
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/bash
../../../robust -ver
if [ $? -eq 0 ];then
ROBUST=../../../robust
else
echo "RobustVerilog warning: GUI version not supported - using non-GUI version robust-lite"
ROBUST=../../../robust-lite
fi
$ROBUST ../src/base/regfile.v -od out -list list.txt -listpath -header -gui ${@}
$ROBUST ../src/base/regfile.h -od out -header -gui ${@}
$ROBUST ../src/base/regfile.html -od out -gui ${@}
Go to most recent revision | Compare with Previous | Blame | View Log
