mirror of
https://github.com/pConst/basic_verilog.git
synced 2025-01-14 06:42:54 +08:00
22 lines
571 B
Batchfile
Executable File
22 lines
571 B
Batchfile
Executable File
@echo off
|
|
rem ------------------------------------------------------------------------------
|
|
rem clean_quartus.bat
|
|
rem Konstantin Pavlov, pavlovconst@gmail.com
|
|
rem ------------------------------------------------------------------------------
|
|
|
|
rem Use this file as a boilerplate for your custom clean script
|
|
rem for Modelsim projects
|
|
|
|
del /s /q .\transcript
|
|
del /s /q .\wave.do
|
|
del /s /q .\modelsim.ini
|
|
del /s /q .\start_time.txt
|
|
del /s /q .\vsim.wlf
|
|
del /s /q .\vish_stacktrace.vstf
|
|
|
|
del /s /f /q .\work\*
|
|
rmdir /s /q .\work\
|
|
|
|
pause
|
|
goto :eof
|