10 lines
409 B
Batchfile
10 lines
409 B
Batchfile
@echo off
|
|
set xv_path=C:\\Xilinx\\Vivado\\2014.4\\bin
|
|
call %xv_path%/xelab -wto 5f5d7ddd32cb4c0cb289603e426c9fed -m64 --debug typical --relax -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip --snapshot project_screentest_behav xil_defaultlib.project_screentest xil_defaultlib.glbl -log elaborate.log
|
|
if "%errorlevel%"=="0" goto SUCCESS
|
|
if "%errorlevel%"=="1" goto END
|
|
:END
|
|
exit 1
|
|
:SUCCESS
|
|
exit 0
|