1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00

vsim intro

This commit is contained in:
Jan Decaluwe 2010-09-11 23:15:09 +02:00
parent 1a438778b9
commit 71123d8996
6 changed files with 21 additions and 1 deletions

View File

@ -3,6 +3,8 @@ syntax: glob
.pydevproject
CHANGELOG.txt
MANIFEST
modelsim.ini
transcript
*~
*.pyc
*.swp
@ -18,9 +20,12 @@ MANIFEST
*.vcd
*.0
*.bak
*.wlf
doc/build
build/
dist/
old_conversion/
work/
work_vlog/
work_vcom/

View File

@ -0,0 +1,3 @@
from myhdl.conversion import verify, analyze
verify.simulator = analyze.simulator = "vcom"

View File

@ -0,0 +1,3 @@
from myhdl.conversion import verify, analyze
verify.simulator = analyze.simulator = "vlog"

View File

@ -1,4 +1,7 @@
all: cver
all: vlog
vlog:
py.test vlog.py test_*.py
icarus:
py.test icarus.py test_*.py

View File

@ -0,0 +1,3 @@
from myhdl.conversion import verify, analyze
verify.simulator = analyze.simulator = "vcom"

View File

@ -0,0 +1,3 @@
from myhdl.conversion import verify, analyze
verify.simulator = analyze.simulator = "vlog"