#!/bin/bash -f # **************************************************************************** # Vivado (TM) v2025.2 (64-bit) # # Filename : simulate.sh # Simulator : AMD Vivado Simulator # Description : Script for simulating the design by launching the simulator # # Generated by Vivado on Thu Jun 11 14:51:06 CEST 2026 # SW Build 6299465 on Fri Nov 14 12:34:56 MST 2025 # # Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. # Copyright 2022-2025 Advanced Micro Devices, Inc. All Rights Reserved. # # usage: simulate.sh # # **************************************************************************** export SIM_VER_XSIM=2025.2 export GCC_VER_XSIM=9.3.0 # catch pipeline exit status set -Eeuo pipefail # simulate design echo "xsim project_tb_edge_time_synth -key {Post-Synthesis:sim_1:Timing:project_tb_edge} -tclbatch project_tb_edge.tcl -view /home/aleandro/Projects/progetto_reti_logiche/project_tb_edge_behav1.wcfg -log simulate.log" xsim project_tb_edge_time_synth -key {Post-Synthesis:sim_1:Timing:project_tb_edge} -tclbatch project_tb_edge.tcl -view /home/aleandro/Projects/progetto_reti_logiche/project_tb_edge_behav1.wcfg -log simulate.log