26 lines
831 B
Bash
Executable file
26 lines
831 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 Mon May 15 12:53:51 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_Alu_behav -key {Behavioral:sim_1:Functional:Test_Alu} -tclbatch Test_Alu.tcl -view /home/alejeune/Documents/4ir/S2/Projet/Projet-Systemes-Informatiques/VHDL/ALU/Test_Alu_behav.wcfg -log simulate.log
|