Rev 718 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 718 | Rev 720 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | #!/bin/bash |
1 | #!/bin/bash |
2 | 2 | ||
3 | #vcom -novopt -f vcom.opt |
3 | #vcom -novopt -f vcom.opt |
4 | vcom -vopt -O5 -novital -no1164 -f vcom.opt |
4 | vcom -vopt -O5 -f vcom.opt |
5 | 5 | ||
6 | 6 | ||
7 | if (( $#>0 )); |
7 | if (( $#>0 )); |
8 | then |
8 | then |
9 | # SPITEST, NMITEST |
9 | # SPITEST, NMITEST |
10 | vlog +define+$1 -sv -novopt -incr -f vlog.opt |
10 | #vlog +define+$1 -sv -novopt -incr -f vlog.opt |
- | 11 | vlog +define+$1 -sv -vopt -O5 +acc -fast -incr -f vlog.opt |
|
11 | else |
12 | else |
12 | #vlog -sv -novopt -incr -f vlog.opt |
13 | #vlog -sv -novopt -incr -f vlog.opt |
13 | vlog -sv -vopt -O5 +acc -fast -incr -f vlog.opt |
14 | vlog -sv -vopt -O5 +acc -fast -incr -f vlog.opt |
14 | fi |
15 | fi |
15 | 16 |