10 lines
300 B
Batchfile
10 lines
300 B
Batchfile
|
@echo off
|
||
|
set xv_path=C:\\Xilinx\\Vivado\\2014.4\\bin
|
||
|
call %xv_path%/xsim project_screentest_behav -key {Behavioral:sim_2:Functional:project_screentest} -tclbatch project_screentest.tcl -log simulate.log
|
||
|
if "%errorlevel%"=="0" goto SUCCESS
|
||
|
if "%errorlevel%"=="1" goto END
|
||
|
:END
|
||
|
exit 1
|
||
|
:SUCCESS
|
||
|
exit 0
|