mirror of
https://github.com/myhdl/myhdl.git
synced 2025-01-24 21:52:56 +08:00
vsim intro
This commit is contained in:
parent
1a438778b9
commit
71123d8996
@ -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/
|
||||||
|
|
||||||
|
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:
|
icarus:
|
||||||
py.test icarus.py test_*.py
|
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