26 lines
834 B
Bash
Executable file
26 lines
834 B
Bash
Executable file
#!/bin/bash -f
|
|
# ****************************************************************************
|
|
# Vivado (TM) v2018.2 (64-bit)
|
|
#
|
|
# Filename : simulate.sh
|
|
# Simulator : Xilinx Vivado Simulator
|
|
# Description : Script for simulating the design by launching the simulator
|
|
#
|
|
# Generated by Vivado on Tue May 30 16:24:20 CEST 2023
|
|
# SW Build 2258646 on Thu Jun 14 20:02:38 MDT 2018
|
|
#
|
|
# Copyright 1986-2018 Xilinx, Inc. All Rights Reserved.
|
|
#
|
|
# usage: simulate.sh
|
|
#
|
|
# ****************************************************************************
|
|
ExecStep()
|
|
{
|
|
"$@"
|
|
RETVAL=$?
|
|
if [ $RETVAL -ne 0 ]
|
|
then
|
|
exit $RETVAL
|
|
fi
|
|
}
|
|
ExecStep xsim Test_total_behav -key {Behavioral:sim_1:Functional:Test_total} -tclbatch Test_total.tcl -view /home/rlacroix/Bureau/4ir/syst_info/Projet-Systemes-Informatiques/VHDL/ALU/Test_Alu_behav.wcfg -log simulate.log
|