Subversion Repositories pentevo

Rev

Rev 718 | Details | Compare with Previous | Last modification | View Log | RSS feed

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