1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00

add support for nvc for VHDL verification

https://github.com/nickg/nvc
This commit is contained in:
Keerthan Jaic 2015-07-18 09:39:06 -04:00
parent 9725ec59ca
commit a61daab43f
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View File

@ -22,6 +22,7 @@ modelsim.ini
transcript
*.log
work/
work_nvc/
work_vlog/
work_vcom/
*.wlf

View File

@ -55,6 +55,13 @@ registerSimulator(
simulate="ghdl -r --workdir=work %(unitname)s"
)
registerSimulator(
name="nvc",
hdl="VHDL",
analyze="nvc --work=work_nvc -a pck_myhdl_%(version)s.vhd %(topname)s.vhd",
elaborate="nvc --work=work_nvc -e %(topname)s",
simulate="nvc --work=work_nvc -r %(topname)s"
)
registerSimulator(
name="vlog",