mirror of
https://github.com/myhdl/myhdl.git
synced 2024-12-14 07:44:38 +08:00
vsim intro
This commit is contained in:
parent
1a438778b9
commit
71123d8996
@ -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/
|
||||
|
||||
|
3
myhdl/test/conversion/general/vcom.py
Normal file
3
myhdl/test/conversion/general/vcom.py
Normal file
@ -0,0 +1,3 @@
|
||||
from myhdl.conversion import verify, analyze
|
||||
|
||||
verify.simulator = analyze.simulator = "vcom"
|
3
myhdl/test/conversion/general/vlog.py
Normal file
3
myhdl/test/conversion/general/vlog.py
Normal file
@ -0,0 +1,3 @@
|
||||
from myhdl.conversion import verify, analyze
|
||||
|
||||
verify.simulator = analyze.simulator = "vlog"
|
@ -1,4 +1,7 @@
|
||||
all: cver
|
||||
all: vlog
|
||||
|
||||
vlog:
|
||||
py.test vlog.py test_*.py
|
||||
|
||||
icarus:
|
||||
py.test icarus.py test_*.py
|
||||
|
3
myhdl/test/conversion/toVerilog2/vcom.py
Normal file
3
myhdl/test/conversion/toVerilog2/vcom.py
Normal file
@ -0,0 +1,3 @@
|
||||
from myhdl.conversion import verify, analyze
|
||||
|
||||
verify.simulator = analyze.simulator = "vcom"
|
3
myhdl/test/conversion/toVerilog2/vlog.py
Normal file
3
myhdl/test/conversion/toVerilog2/vlog.py
Normal file
@ -0,0 +1,3 @@
|
||||
from myhdl.conversion import verify, analyze
|
||||
|
||||
verify.simulator = analyze.simulator = "vlog"
|
Loading…
x
Reference in New Issue
Block a user