-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mario Drumond Lages de Oliveira
committed
Feb 8, 2015
1 parent
181a85a
commit aa62491
Showing
62 changed files
with
10,421 additions
and
758 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# ignore ModelSim generated files and directories (temp files and so on) | ||
[_@]* | ||
|
||
# ignore compilation output of ModelSim | ||
*.prw | ||
*.mti | ||
*.dat | ||
*.dbs | ||
*.psm | ||
*.bak | ||
*.cmp | ||
*.jpg | ||
*.html | ||
*.bsf | ||
|
||
# ignore simulation output of ModelSim | ||
wlf* | ||
*.wlf | ||
*.vstf | ||
*.ucdb | ||
cov*/ | ||
transcript* | ||
sc_dpiheader.h | ||
vsim.dbg | ||
|
||
# Emacs crap | ||
*~ | ||
\#*\# | ||
.#* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#This Makefile supports the following commands: | ||
#make build | ||
#make clean | ||
#make unbuild (same as clean) | ||
|
||
include ../../make/rtl.mk | ||
clean: unbuild | ||
rm -rf csrc/ simv simv.daidir/ compile.log | ||
|
||
compile: build | ||
vcs -full64 +libext+.v build/*.v -y ../common/build/ +lint=all -timescale=1ns/1ns -l compile.log -debug_all +v2k |
Oops, something went wrong.