URL
https://opencores.org/ocsvn/wb_fifo/wb_fifo/trunk
Subversion Repositories wb_fifo
Compare Revisions
- This comparison shows the changes necessary to convert path
/wb_fifo/trunk
- from Rev 8 to Rev 9
- ↔ Reverse comparison
Rev 8 → Rev 9
/workspaces/simulate.sh
74,16 → 74,24
then echo "Warning: vhdlan not installed. Skipping compilation for VCS."; |
else |
echo "Starting VCS compile..." |
vhdlan $VCS_BUILD_OPTS -work tauhop 2>&1 \ |
$VHDL_SRC_PATH/packages/tauhop/pkg-tlm.vhdl \ |
$VHDL_SRC_PATH/packages/tauhop/pkg-dsp.vhdl \ |
| tee -ai $VCS_SIM_PATH/simulate.log; |
|
vhdlan $VCS_BUILD_OPTS -work work 2>&1 \ |
$VHDL_SRC_PATH/flight-controller.vhdl \ |
| tee -ai $VCS_SIM_PATH/simulate.log; |
cd $VCS_SIM_PATH; |
|
errorStr=`grep "Error-\[" $1/simulate.log`; |
eval 2>&1 "vhdlan $VCS_BUILD_OPTS -work osvvm \ |
$(cat ../osvvm.f)" \ |
| tee -ai ./simulate.log; |
|
#vcom -2008 -work tauhop $VHDL_SRC_PATH/packages/pkg-types.vhdl \ |
eval 2>&1 "vhdlan $VCS_BUILD_OPTS -work tauhop \ |
$(cat ../tauhop.f)" \ |
| tee -ai ./simulate.log; |
#../../model/vhdl/packages/pkg-resolved.vhdl \ |
|
eval 2>&1 "vhdlan $VCS_BUILD_OPTS -work work \ |
$(cat ../work.f)" \ |
| tee -ai ./simulate.log; |
|
errorStr=`grep "Error-\[" ./simulate.log`; |
if [ `echo ${#errorStr}` -gt 0 ] |
then echo "Errors exist. Refer simulate.log for more details. Exiting."; exit; |
else |
91,10 → 99,10
|
#vcs -R -debug_all work.system 2>&1 \ |
vcs -debug_all work.system 2>&1 \ |
| tee -ai $1/simulate.log; |
| tee -ai ./simulate.log; |
|
$1/simv -gui -dve_opt -session=./view-04212015.tcl -dve_opt -cmd=run 2>&1 \ |
| tee -ai $1/simulate.log; |
./simv -gui -dve_opt -session=./view-session.tcl -dve_opt -cmd=run 2>&1 \ |
| tee -ai ./simulate.log; |
|
echo $(date "+[%Y-%m-%d %H:%M:%S]: simulation loaded."); |
fi |