@echo off REM **************************************************************************** REM Vivado (TM) v2020.1 (64-bit) REM REM Filename : elaborate.bat REM Simulator : Xilinx Vivado Simulator REM Description : Script for elaborating the compiled design REM REM Generated by Vivado on Mon Feb 22 07:40:28 -0500 2021 REM SW Build 2902540 on Wed May 27 19:54:49 MDT 2020 REM REM Copyright 1986-2020 Xilinx, Inc. All Rights Reserved. REM REM usage: elaborate.bat REM REM **************************************************************************** echo "xelab -wto 2e51a4e140b64c3ca29be3922ed730c1 --incr --debug typical --relax --mt 2 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot stat_reg_tb_behav xil_defaultlib.stat_reg_tb xil_defaultlib.glbl -log elaborate.log" call xelab -wto 2e51a4e140b64c3ca29be3922ed730c1 --incr --debug typical --relax --mt 2 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot stat_reg_tb_behav xil_defaultlib.stat_reg_tb xil_defaultlib.glbl -log elaborate.log if "%errorlevel%"=="0" goto SUCCESS if "%errorlevel%"=="1" goto END :END exit 1 :SUCCESS exit 0