1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +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 .pydevproject
CHANGELOG.txt CHANGELOG.txt
MANIFEST MANIFEST
modelsim.ini
transcript
*~ *~
*.pyc *.pyc
*.swp *.swp
@ -18,9 +20,12 @@ MANIFEST
*.vcd *.vcd
*.0 *.0
*.bak *.bak
*.wlf
doc/build doc/build
build/ build/
dist/ dist/
old_conversion/ old_conversion/
work/ work/
work_vlog/ 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: icarus:
py.test icarus.py test_*.py 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"