mirror of
https://github.com/pConst/basic_verilog.git
synced 2025-01-14 06:42:54 +08:00
21 lines
501 B
Bash
21 lines
501 B
Bash
#! /usr/bin/env bash
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# clean_modelsim.sh
|
|
# published as part of https://github.com/pConst/basic_verilog
|
|
# Konstantin Pavlov, pavlovconst@gmail.com
|
|
# ------------------------------------------------------------------------------
|
|
#
|
|
# Use this file as a boilerplate for your custom clean script
|
|
# for Modelsim projects
|
|
|
|
|
|
rm -rf work
|
|
|
|
rm transcript
|
|
rm modelsim.ini
|
|
rm start_time.txt
|
|
rm vsim.wlf
|
|
rm vish_stacktrace.vstf
|
|
|