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.

compile.bat 842B

1234567891011121314151617181920212223242526
  1. @echo off
  2. REM ****************************************************************************
  3. REM Vivado (TM) v2021.2 (64-bit)
  4. REM
  5. REM Filename : compile.bat
  6. REM Simulator : Xilinx Vivado Simulator
  7. REM Description : Script for compiling the simulation design source files
  8. REM
  9. REM Generated by Vivado on Mon May 23 23:00:16 +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: compile.bat
  15. REM
  16. REM ****************************************************************************
  17. REM compile VHDL design sources
  18. echo "xvhdl --incr --relax -prj pwm_test_db_vhdl.prj"
  19. call xvhdl --incr --relax -prj pwm_test_db_vhdl.prj -log xvhdl.log
  20. call type xvhdl.log > compile.log
  21. if "%errorlevel%"=="1" goto END
  22. if "%errorlevel%"=="0" goto SUCCESS
  23. :END
  24. exit 1
  25. :SUCCESS
  26. exit 0