Subversion Repositories pentevo

Rev

Rev 720 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed | ?url?

  1. #!/bin/bash
  2.  
  3. #vcom -novopt -f vcom.opt
  4. vcom -vopt -O5 -f vcom.opt
  5.  
  6.  
  7. if (( $#>0 ));
  8. then
  9. # SPITEST, NMITEST
  10.         #vlog +define+$1 -sv -novopt -incr -f vlog.opt
  11.         vlog +define+$1 -sv -vopt -O5 +acc -fast -incr -f vlog.opt
  12. else
  13.         #vlog -sv -novopt -incr -f vlog.opt
  14.         vlog -sv -vopt -O5 +acc -fast -incr -f vlog.opt
  15. fi
  16.  
  17.