2006-04-05 08:34:45 +00:00
|
|
|
@echo off
|
|
|
|
|
2006-08-09 08:12:38 +00:00
|
|
|
REM
|
|
|
|
REM qucsdigi.bat - wrapper script for digital simulation
|
|
|
|
REM
|
2011-03-18 17:58:17 +00:00
|
|
|
REM Copyright (C) 2005, 2006, 2009, 2011 Stefan Jahn <stefan@lkcc.org>
|
2006-08-09 08:12:38 +00:00
|
|
|
REM
|
|
|
|
REM This is free software; you can redistribute it and/or modify
|
|
|
|
REM it under the terms of the GNU General Public License as published by
|
|
|
|
REM the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
REM any later version.
|
|
|
|
REM
|
|
|
|
REM This software is distributed in the hope that it will be useful,
|
|
|
|
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
REM GNU General Public License for more details.
|
|
|
|
REM
|
|
|
|
REM You should have received a copy of the GNU General Public License
|
|
|
|
REM along with this package; see the file COPYING. If not, write to
|
|
|
|
REM the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
|
|
REM Boston, MA 02110-1301, USA.
|
|
|
|
REM
|
|
|
|
|
2011-03-18 17:58:17 +00:00
|
|
|
if "X%6"=="X" goto usage
|
2006-04-05 08:34:45 +00:00
|
|
|
|
|
|
|
set NAME=%1
|
|
|
|
set NAMEOUT=%2
|
2024-02-10 13:23:22 +00:00
|
|
|
set SIMTIME=%~3
|
|
|
|
set SIMDIR=%4
|
2006-04-05 08:34:45 +00:00
|
|
|
set BINDIR=%5
|
|
|
|
|
2024-02-10 13:23:22 +00:00
|
|
|
REM echo %0 %1 %2 %3 %4 %5
|
2006-04-05 08:34:45 +00:00
|
|
|
|
2024-02-10 13:23:22 +00:00
|
|
|
REM Remove any spaces in the simulation time command.
|
|
|
|
set SIMTIME=%SIMTIME: =%
|
|
|
|
REM echo %SIMTIME%
|
|
|
|
|
|
|
|
if not exist "%SIMDIR%" goto nodir
|
|
|
|
|
|
|
|
cd /d "%SIMDIR%"
|
2006-04-05 08:34:45 +00:00
|
|
|
|
|
|
|
if not exist %NAME% goto nofile
|
|
|
|
|
|
|
|
copy %NAME% digi.vhdl > NUL
|
|
|
|
set NAME=digi
|
|
|
|
|
2024-02-09 21:09:04 +00:00
|
|
|
echo running GHDL analysis pass...
|
|
|
|
ghdl -a %NAME%.vhdl
|
2006-04-05 08:34:45 +00:00
|
|
|
|
2024-02-09 21:09:04 +00:00
|
|
|
echo running GHDL elaboration pass...
|
|
|
|
ghdl -e TestBench
|
2006-04-05 08:34:45 +00:00
|
|
|
|
|
|
|
echo simulating...
|
2024-02-10 13:23:22 +00:00
|
|
|
ghdl -r TestBench --vcd=digi.vcd --stop-time=%SIMTIME%
|
2006-04-05 08:34:45 +00:00
|
|
|
|
|
|
|
echo running VCD conversion...
|
2024-03-20 08:53:32 +03:00
|
|
|
%BINDIR%\qucsconv_rf.exe -if vcd -of qucsdata -i %NAME%.vcd -o %NAMEOUT%
|
2006-04-05 08:34:45 +00:00
|
|
|
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:usage
|
2024-02-09 21:09:04 +00:00
|
|
|
echo Usage: %0 "<netlist.txt> <output.dat> <time> <directory> <bindirectory>"
|
2006-08-09 08:12:38 +00:00
|
|
|
echo Directory has to contain the file 'netlist.txt'.
|
2006-04-05 08:34:45 +00:00
|
|
|
exit /b 1
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:nodir
|
2024-02-10 13:23:22 +00:00
|
|
|
echo %SIMDIR%: Not a directory
|
2006-04-05 08:34:45 +00:00
|
|
|
exit /b 1
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:nofile
|
|
|
|
echo %NAME%: No such file
|
|
|
|
exit /b 1
|
|
|
|
goto end
|
|
|
|
|
2024-02-10 13:23:22 +00:00
|
|
|
:end
|