You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

simulate.bat 1.3KB

12345678910111213141516171819202122232425
  1. @echo off
  2. REM ****************************************************************************
  3. REM Vivado (TM) v2021.2 (64-bit)
  4. REM
  5. REM Filename : simulate.bat
  6. REM Simulator : Xilinx Vivado Simulator
  7. REM Description : Script for simulating the design by launching the simulator
  8. REM
  9. REM Generated by Vivado on Mon May 23 23:00:20 +0200 2022
  10. REM SW Build 3367213 on Tue Oct 19 02:48:09 MDT 2021
  11. REM
  12. REM IP Build 3369179 on Thu Oct 21 08:25:16 MDT 2021
  13. REM
  14. REM usage: simulate.bat
  15. REM
  16. REM ****************************************************************************
  17. REM simulate design
  18. echo "xsim pwm_test_db_behav -key {Behavioral:sim_1:Functional:pwm_test_db} -tclbatch pwm_test_db.tcl -view C:/Users/Felix/OneDrive/Master/Projektarbeit_FPGA/Programme/Git_Projekte/FPGA_Projekt_Regler/StreckenSim_mitRegler/StreckeSim_counter_working/StreckeSim/pwm_test_db_func_synth.wcfg -log simulate.log"
  19. call xsim pwm_test_db_behav -key {Behavioral:sim_1:Functional:pwm_test_db} -tclbatch pwm_test_db.tcl -view C:/Users/Felix/OneDrive/Master/Projektarbeit_FPGA/Programme/Git_Projekte/FPGA_Projekt_Regler/StreckenSim_mitRegler/StreckeSim_counter_working/StreckeSim/pwm_test_db_func_synth.wcfg -log simulate.log
  20. if "%errorlevel%"=="0" goto SUCCESS
  21. if "%errorlevel%"=="1" goto END
  22. :END
  23. exit 1
  24. :SUCCESS
  25. exit 0