Files
BSI-901-fpga-software/c64_pro.sim/sim_1/behav/modelsim/simulate.bat
T
2024-10-28 13:14:49 +08:00

25 lines
774 B
Batchfile

@echo off
REM ****************************************************************************
REM Vivado (TM) v2023.1 (64-bit)
REM
REM Filename : simulate.bat
REM Simulator : Siemens ModelSim Simulator
REM Description : Script for simulating the design by launching the simulator
REM
REM Generated by Vivado on Mon Jul 29 14:49:10 +0800 2024
REM SW Build 3865809 on Sun May 7 15:05:29 MDT 2023
REM
REM IP Build 3864474 on Sun May 7 20:36:21 MDT 2023
REM
REM usage: simulate.bat
REM
REM ****************************************************************************
set bin_path=C:\modeltech64_10.7\win64
call %bin_path%/vsim -do "do {pl_top_tb_simulate.do}" -l simulate.log
if "%errorlevel%"=="1" goto END
if "%errorlevel%"=="0" goto SUCCESS
:END
exit 1
:SUCCESS
exit 0